/* ========================================
   NAZ ALTINBAŞ - LANDING PAGE CSS
   Duygusal Edebiyatın Genç Sesi
   ======================================== */

/* ROOT VARIABLES */
:root {
    --gold: #c5a059;
    --dark: #050505;
    --dark-gray: #121212;
    --gray: #1a1a1a;
    --white: #e5e5e5;
}

/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark);
    color: var(--white);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* TYPOGRAPHY */
.font-serif {
    font-family: 'Playfair Display', Georgia, serif;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

/* COLORS */
.text-gold {
    color: var(--gold);
}

.text-white {
    color: #ffffff;
}

.text-gray-300 {
    color: #d1d5db;
}

.text-gray-400 {
    color: #9ca3af;
}

.text-gray-500 {
    color: #6b7280;
}

.text-gray-600 {
    color: #4b5563;
}

.text-gray-700 {
    color: #374151;
}

.bg-gold {
    background-color: var(--gold);
}

.bg-dark {
    background-color: var(--dark);
}

.bg-dark-gray {
    background-color: var(--dark-gray);
}

.bg-white {
    background-color: #ffffff;
}

.bg-black {
    background-color: #000000;
}

.border-gold {
    border-color: var(--gold);
}

.border-white\/5 {
    border-color: rgba(255, 255, 255, 0.05);
}

.border-white\/10 {
    border-color: rgba(255, 255, 255, 0.1);
}

.border-white\/20 {
    border-color: rgba(255, 255, 255, 0.2);
}

.border-gold\/20 {
    border-color: rgba(197, 160, 89, 0.2);
}

.border-gold\/30 {
    border-color: rgba(197, 160, 89, 0.3);
}

/* GLASSMORPHISM */
.glass {
    background: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

/* GLOW EFFECTS */
.glow-gold {
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.15);
}

.text-glow {
    text-shadow: 0 0 15px rgba(197, 160, 89, 0.4);
}

/* GOLD GRADIENT TEXT */
.gold-gradient {
    background: linear-gradient(to right, #c5a059, #f9e1a9, #c5a059);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* HERO SECTION GLOWS */
.hero-glow-1 {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 50%;
    filter: blur(150px);
    pointer-events: none;
}

.hero-glow-2 {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    filter: blur(150px);
    pointer-events: none;
}

/* ANIMATIONS */
@keyframes floatAnim {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.float {
    animation: floatAnim 6s ease-in-out infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* NAVBAR */
#navbar {
    background: transparent;
    backdrop-filter: blur(0px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#navbar.scrolled {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Nav Link Active State */
.nav-link.active {
    color: var(--gold);
}

.nav-link {
    position: relative;
    padding-bottom: 4px;
}

/* Header Hover Effects */
#navbar a:hover {
    transform: translateY(-2px);
}

#navbar .glass:hover {
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.3);
}

/* MOBILE MENU */
#mobileMenu {
    display: none;
}

#mobileMenu.active {
    display: flex;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d4b06a;
}

/* SELECTION */
::selection {
    background-color: var(--gold);
    color: #000000;
}

::-moz-selection {
    background-color: var(--gold);
    color: #000000;
}

/* UTILITIES */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

@media (min-width: 1536px) {
    .container {
        max-width: 1536px;
    }
}

/* SPACING */
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-10 > * + * { margin-top: 2.5rem; }
.space-y-12 > * + * { margin-top: 3rem; }

.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

/* PADDING */
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.p-24 { padding: 6rem; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }

.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-40 { padding-top: 10rem; padding-bottom: 10rem; }

.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-12 { padding-top: 3rem; }
.pt-20 { padding-top: 5rem; }

.pb-2 { padding-bottom: 0.5rem; }

.pl-6 { padding-left: 1.5rem; }
.pl-8 { padding-left: 2rem; }

/* MARGIN */
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-32 { margin-bottom: 8rem; }

.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }

/* FLEX & GRID */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.grid { display: grid; }

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .md\:col-span-2 {
        grid-column: span 2 / span 2;
    }
    
    .md\:flex {
        display: flex;
    }
    
    .md\:hidden {
        display: none;
    }
    
    .md\:block {
        display: block;
    }
}

/* POSITIONING */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.top-0 { top: 0; }
.top-10 { top: 2.5rem; }
.right-0 { right: 0; }
.right-6 { right: 1.5rem; }
.right-10 { right: 2.5rem; }
.bottom-8 { bottom: 2rem; }
.bottom-10 { bottom: 2.5rem; }
.left-0 { left: 0; }

.-bottom-8 { bottom: -2rem; }
.-bottom-10 { bottom: -2.5rem; }
.-right-6 { right: -1.5rem; }
.-right-10 { right: -2.5rem; }

.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }
.z-\[60\] { z-index: 60; }
.z-\[70\] { z-index: 70; }

/* BORDERS */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-b { border-bottom-width: 1px; }
.border-l-2 { border-left-width: 2px; }
.border-t { border-top-width: 1px; }

.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-\[3rem\] { border-radius: 3rem; }
.rounded-\[4rem\] { border-radius: 4rem; }
.rounded-full { border-radius: 9999px; }

/* SHADOWS */
.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.shadow-\[0_0_100px_rgba\(0\,0\,0\,0\.8\)\] {
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.8);
}

.shadow-gold\/10 {
    box-shadow: 0 20px 25px -5px rgba(197, 160, 89, 0.1);
}

.shadow-gold\/20 {
    box-shadow: 0 25px 50px -12px rgba(197, 160, 89, 0.2);
}

/* TRANSFORMS */
.scale-105 { transform: scale(1.05); }
.scale-110 { transform: scale(1.1); }

.translate-y-4 { transform: translateY(1rem); }

.transform {
    transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

/* TRANSITIONS */
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }
.duration-1000 { transition-duration: 1000ms; }

/* FILTERS */
.grayscale {
    filter: grayscale(100%);
}

/* OVERFLOW */
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }

/* ASPECT RATIO */
.aspect-\[3\/4\.5\] {
    aspect-ratio: 3 / 4.5;
}

/* WIDTH & HEIGHT */
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-24 { width: 6rem; }
.w-full { width: 100%; }

.h-\[1px\] { height: 1px; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-full { height: 100%; }

.min-h-screen {
    min-height: 100vh;
}

.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }

.max-w-\[450px\] { max-width: 450px; }
.max-w-\[500px\] { max-width: 500px; }

.h-\[550px\] { height: 550px; }
.h-\[650px\] { height: 650px; }

/* OBJECT FIT */
.object-cover { object-fit: cover; }

/* OPACITY */
.opacity-0 { opacity: 0; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-100 { opacity: 1; }

/* DISPLAY */
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

/* TEXT ALIGNMENT */
.text-center { text-align: center; }
.text-left { text-align: left; }

/* FONT SIZES */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }
.text-8xl { font-size: 6rem; line-height: 1; }
.text-9xl { font-size: 8rem; line-height: 1; }

.text-\[10px\] { font-size: 10px; }

/* FONT WEIGHT */
.font-light { font-weight: 300; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

/* LETTER SPACING */
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-\[0\.3em\] { letter-spacing: 0.3em; }
.tracking-\[0\.4em\] { letter-spacing: 0.4em; }
.tracking-\[0\.5em\] { letter-spacing: 0.5em; }
.tracking-\[0\.6em\] { letter-spacing: 0.6em; }

/* FONT STYLE */
.italic { font-style: italic; }

/* LINE HEIGHT */
.leading-none { line-height: 1; }
.leading-relaxed { line-height: 1.625; }

/* TEXT TRANSFORM */
.uppercase { text-transform: uppercase; }

/* OUTLINE */
.outline-none { outline: 2px solid transparent; outline-offset: 2px; }

/* RESIZE */
.resize-none { resize: none; }

/* CURSOR */
.cursor-pointer { cursor: pointer; }

/* POINTER EVENTS */
.pointer-events-none { pointer-events: none; }

/* BACKGROUND OPACITY */
.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
.bg-gold\/10 { background-color: rgba(197, 160, 89, 0.1); }

/* BACKGROUND GRADIENT */
.bg-gradient-to-t {
    background-image: linear-gradient(to top, var(--tw-gradient-stops));
}

.from-black { --tw-gradient-from: #000000; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); }
.via-transparent { --tw-gradient-via: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to, transparent); }
.to-transparent { --tw-gradient-to: transparent; }

/* HOVER STATES */
.hover\:text-gold:hover { color: var(--gold); }
.hover\:text-white:hover { color: #ffffff; }
.hover\:text-black:hover { color: #000000; }
.hover\:bg-gold:hover { background-color: var(--gold); }
.hover\:bg-white:hover { background-color: #ffffff; }
.hover\:bg-black:hover { background-color: #000000; }
.hover\:border-gold:hover { border-color: var(--gold); }
.hover\:opacity-100:hover { opacity: 1; }
.hover\:grayscale-0:hover { filter: grayscale(0%); }

.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:translate-y-0 { transform: translateY(0); }

/* FOCUS STATES */
.focus\:border-gold:focus { border-color: var(--gold); }

/* PLACEHOLDER */
.placeholder\:text-gray-600::placeholder { color: #4b5563; }

/* RESPONSIVE DESIGN */
@media (min-width: 640px) {
    .sm\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
    .sm\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
    .sm\:text-5xl { font-size: 3rem; line-height: 1; }
    .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .sm\:py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
    .sm\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
    .sm\:w-8 { width: 2rem; }
    .sm\:h-8 { height: 2rem; }
    .sm\:h-\[500px\] { height: 500px; }
    .sm\:gap-6 { gap: 1.5rem; }
    .sm\:gap-8 { gap: 2rem; }
    .sm\:space-y-8 > * + * { margin-top: 2rem; }
    .sm\:tracking-\[0\.6em\] { letter-spacing: 0.6em; }
    .sm\:tracking-\[0\.3em\] { letter-spacing: 0.3em; }
    .sm\:tracking-\[0\.25em\] { letter-spacing: 0.25em; }
    .sm\:text-\[10px\] { font-size: 10px; }
    .sm\:text-\[9px\] { font-size: 9px; }
    .sm\:pl-6 { padding-left: 1.5rem; }
    .sm\:pt-4 { padding-top: 1rem; }
    .sm\:mb-4 { margin-bottom: 1rem; }
    .sm\:rounded-\[3rem\] { border-radius: 3rem; }
    .sm\:px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
    .sm\:py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
    .sm\:w-auto { width: auto; }
    .sm\:flex { display: flex; }
    .sm\:flex-row { flex-direction: row; }
    .sm\:hidden { display: none; }
    .sm\:block { display: block; }
    .sm\:-top-6 { top: -1.5rem; }
    .sm\:-right-6 { right: -1.5rem; }
    .sm\:-bottom-6 { bottom: -1.5rem; }
    .sm\:-left-6 { left: -1.5rem; }
    .sm\:w-24 { width: 6rem; }
    .sm\:h-24 { height: 6rem; }
    .sm\:w-20 { width: 5rem; }
    .sm\:h-20 { height: 5rem; }
    .sm\:bottom-8 { bottom: 2rem; }
    .sm\:left-8 { left: 2rem; }
    .sm\:right-8 { right: 2rem; }
}

@media (min-width: 768px) {
    .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
    .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
    .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
    .md\:text-5xl { font-size: 3rem; line-height: 1; }
    .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
    .md\:text-7xl { font-size: 4.5rem; line-height: 1; }
    .md\:text-8xl { font-size: 6rem; line-height: 1; }
    .md\:text-9xl { font-size: 8rem; line-height: 1; }
    
    .md\:px-20 { padding-left: 5rem; padding-right: 5rem; }
    .md\:py-8 { padding-top: 2rem; padding-bottom: 2rem; }
    
    .md\:gap-12 { gap: 3rem; }
    .md\:gap-16 { gap: 4rem; }
    
    .md\:space-y-10 > * + * { margin-top: 2.5rem; }
    
    .md\:mb-10 { margin-bottom: 2.5rem; }
    
    .md\:col-span-2 { grid-column: span 2 / span 2; }
    
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .md\:flex {
        display: flex;
    }
    
    .md\:hidden {
        display: none;
    }
    
    .md\:block {
        display: block;
    }
}

@media (min-width: 1024px) {
    .lg\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
    .lg\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
    .lg\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
    .lg\:text-5xl { font-size: 3rem; line-height: 1; }
    .lg\:text-7xl { font-size: 4.5rem; line-height: 1; }
    .lg\:text-8xl { font-size: 6rem; line-height: 1; }
    
    .lg\:gap-8 { gap: 2rem; }
    .lg\:gap-12 { gap: 3rem; }
    .lg\:gap-16 { gap: 4rem; }
    .lg\:gap-20 { gap: 5rem; }
    
    .lg\:space-y-8 > * + * { margin-top: 2rem; }
    .lg\:space-y-10 > * + * { margin-top: 2.5rem; }
    
    .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
    .lg\:px-12 { padding-left: 3rem; padding-right: 3rem; }
    .lg\:py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
    .lg\:py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
    .lg\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
    .lg\:py-40 { padding-top: 10rem; padding-bottom: 10rem; }
    .lg\:p-10 { padding: 2.5rem; }
    .lg\:p-12 { padding: 3rem; }
    
    .lg\:pl-8 { padding-left: 2rem; }
    .lg\:pl-10 { padding-left: 2.5rem; }
    
    .lg\:mb-10 { margin-bottom: 2.5rem; }
    .lg\:mb-32 { margin-bottom: 8rem; }
    
    .lg\:h-\[600px\] { height: 600px; }
    .lg\:h-\[650px\] { height: 650px; }
    
    .lg\:max-w-\[500px\] { max-width: 500px; }
    .lg\:max-w-none { max-width: none; }
    
    .lg\:-bottom-10 { bottom: -2.5rem; }
    .lg\:-right-10 { right: -2.5rem; }
    
    .lg\:flex { display: flex; }
    .lg\:hidden { display: none; }
    .lg\:block { display: block; }
    
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .lg\:order-1 { order: 1; }
    .lg\:order-2 { order: 2; }
    
    .lg\:text-left { text-align: left; }
    .lg\:justify-start { justify-content: flex-start; }
    .lg\:mx-0 { margin-left: 0; margin-right: 0; }
    
    .lg\:bottom-10 { bottom: 2.5rem; }
    .lg\:left-10 { left: 2.5rem; }
    .lg\:right-10 { right: 2.5rem; }
    
    .lg\:w-32 { width: 8rem; }
    .lg\:h-32 { height: 8rem; }
    .lg\:w-28 { width: 7rem; }
    .lg\:h-28 { height: 7rem; }
}

@media (min-width: 1280px) {
    .xl\:text-8xl { font-size: 6rem; line-height: 1; }
    .xl\:gap-12 { gap: 3rem; }
    .xl\:gap-16 { gap: 4rem; }
    .xl\:px-8 { padding-left: 2rem; padding-right: 2rem; }
    .xl\:h-\[700px\] { height: 700px; }
}

/* Order Utilities */
.order-1 { order: 1; }
.order-2 { order: 2; }

/* Additional Animations */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-pulse {
    animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* STRONG TAGS */
strong {
    font-weight: 700;
}

/* INPUTS & TEXTAREAS */
input, textarea {
    font-family: 'Inter', sans-serif;
}

input:focus, textarea:focus {
    outline: none;
}

/* BUTTONS */
button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

button:focus {
    outline: none;
}

/* LINKS */
a {
    text-decoration: none;
    color: inherit;
}

/* IMAGES */
img {
    display: block;
    max-width: 100%;
}

/* FORMS */
form {
    width: 100%;
}