/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

:root {
    --background: 240 10% 6%;
    --foreground: 0 0% 95%;

    --card: 240 10% 10%;
    --card-foreground: 0 0% 95%;

    --primary: 347 77% 50%;
    --primary-foreground: 0 0% 100%;
    --primary-glow: 347 77% 60%;

    --secondary: 240 10% 14%;
    --secondary-foreground: 0 0% 95%;

    --muted: 240 10% 18%;
    --muted-foreground: 240 5% 55%;

    --border: 240 10% 18%;
    --input: 240 10% 18%;
    --ring: 347 77% 50%;
    --radius: 0.75rem;

    --gradient-primary: linear-gradient(135deg, hsl(347 77% 50%) 0%, hsl(330 70% 40%) 100%);
    --gradient-glow: radial-gradient(ellipse at center, hsl(347 77% 50% / 0.15) 0%, transparent 70%);

    --shadow-glow: 0 0 40px hsl(347 77% 50% / 0.3);
    --shadow-card: 0 8px 32px hsl(0 0% 0% / 0.4);
    --shadow-card-hover: 0 16px 48px hsl(0 0% 0% / 0.5);

    --font-display: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
}

body {
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: var(--font-body);
    margin: 0;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    color: hsl(var(--foreground));
    margin-top: 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.text-primary {
    color: hsl(var(--primary));
}

.text-muted-foreground {
    color: hsl(var(--muted-foreground));
}

.font-display {
    font-family: var(--font-display) !important;
}

/* Utilities mimicking Lovable/Tailwind */
.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Glass Effect */
.glass {
    background: hsla(var(--card) / 0.8);
    backdrop-filter: blur(24px);
    border: 1px solid hsla(var(--border) / 0.5);
}

/* Card Styles */
.aq-card {
    background: hsla(var(--card) / 0.8);
    backdrop-filter: blur(24px);
    border: 1px solid hsla(var(--border) / 0.5);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.aq-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: hsla(var(--primary)/0.5);
}

/* Button */
.aq-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: calc(var(--radius) - 2px);
    font-weight: 500;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

.aq-btn:hover {
    opacity: 0.9;
}

/* Input */
input[type="text"],
select {
    background: hsl(var(--input));
    border: 1px solid hsl(var(--border));
    color: hsl(var(--foreground));
    padding: 0.75rem 1rem;
    border-radius: calc(var(--radius) - 2px);
    width: 100%;
    outline: none;
    box-sizing: border-box;
    /* Fix width issues */
}

input[type="text"]:focus,
select:focus {
    border-color: hsl(var(--ring));
}

/* Menu Navigation */
.header-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.header-menu li {
    margin: 0;
}

.header-menu a {
    color: hsl(var(--muted-foreground));
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
    position: relative;
    padding: 0.5rem 0;
}

.header-menu a:hover,
.header-menu a.active {
    color: hsl(var(--foreground));
}

.header-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: hsl(var(--primary));
    transition: width 0.3s ease;
}

.header-menu a:hover::after,
.header-menu a.active::after {
    width: 100%;
}