/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark-bg: #0a0a0f;
    --darker-bg: #050508;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #b4b4b4;
    --accent-cyan: #00f2fe;
    --accent-purple: #764ba2;
    --accent-pink: #f5576c;

    /* Fonts */
    --font-display: 'Righteous', cursive;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Poppins', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
    font-family: var(--font-body);
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a0a2e 50%, #0a0a0f 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
    top: -250px;
    right: -250px;
    animation: float 8s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 87, 108, 0.2) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(30px, 30px) rotate(180deg);
    }
}

.hero-content {
    text-align: center;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-name {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7rem);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 2px;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        filter: hue-rotate(0deg);
    }

    50% {
        filter: hue-rotate(20deg);
    }
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: 1px;
}

.scroll-indicator {
    margin-top: var(--spacing-lg);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-secondary);
    animation: bounce 2s ease-in-out infinite;
}

.scroll-arrow {
    font-size: 2rem;
    margin-top: var(--spacing-xs);
    color: var(--accent-cyan);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

/* ========================================
   SLIDESHOW CONTAINER
   ======================================== */
.slideshow-container {
    min-height: 100vh;
    position: relative;
    background: var(--darker-bg);
    overflow: hidden;
}

.slides-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(102, 126, 234, 0.2);
    transition: var(--transition-smooth);
}

.slide.active img {
    animation: zoomIn 0.8s ease-out;
}

/* Animated Text Overlay on Images */
.slide-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #ffffff;
    text-align: center;
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    white-space: nowrap;

    /* Funky layered text effect */
    text-shadow:
        3px 3px 0 var(--accent-cyan),
        6px 6px 0 var(--accent-purple),
        9px 9px 0 var(--accent-pink),
        12px 12px 20px rgba(0, 0, 0, 0.5);
}

.slide.active .slide-text-overlay {
    animation: textSlideIn 1s ease-out 0.3s forwards,
        textFloat 3s ease-in-out 1.3s infinite;
}

@keyframes textSlideIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) translateY(50px) scale(0.8);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) translateY(0) scale(1);
    }
}

@keyframes textFloat {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0px);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-10px);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ========================================
   NAVIGATION BUTTONS
   ======================================== */
.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-cyan);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 30px rgba(0, 242, 254, 0.4);
}

.nav-button.prev {
    left: var(--spacing-md);
}

.nav-button.next {
    right: var(--spacing-md);
}

/* ========================================
   CAPTION OVERLAY
   ======================================== */
.caption-overlay {
    position: absolute;
    bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: var(--spacing-md);
    z-index: 5;
    transition: var(--transition-smooth);
}

.caption-overlay:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.caption-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.caption-title,
.caption-description,
.caption-date {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition-smooth);
    padding: var(--spacing-xs);
    border-radius: 8px;
}

.caption-title {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.caption-description {
    font-size: 1rem;
    resize: none;
    min-height: 60px;
    font-weight: 300;
}

.caption-date {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
}

.caption-title:focus,
.caption-description:focus,
.caption-date:focus {
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent-cyan);
}

.caption-title::placeholder,
.caption-description::placeholder,
.caption-date::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

/* ========================================
   PROGRESS BAR
   ======================================== */
.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.progress-fill {
    height: 100%;
    background: var(--accent-gradient);
    width: 0%;
    transition: width 0.3s ease;
}

/* ========================================
   DOTS NAVIGATION
   ======================================== */
.dots-container {
    position: absolute;
    bottom: 180px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-bounce);
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.dot.active {
    background: var(--accent-cyan);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.6);
}

/* ========================================
   SLIDE COUNTER
   ======================================== */
.slide-counter {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-secondary);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    z-index: 10;
}

#currentSlide {
    color: var(--accent-cyan);
    font-weight: 700;
    font-size: 1.5rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--darker-bg);
    padding: var(--spacing-md);
    text-align: center;
    border-top: 1px solid var(--glass-border);
    font-family: var(--font-body);
}

.footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
}

.footer-links {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: var(--accent-cyan);
}

/* ========================================
   CONTACT FORM SECTION
   ======================================== */
.contact-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a0a2e 50%, #0a0a0f 100%);
    padding: var(--spacing-lg) var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.2) 0%, transparent 70%);
    top: -300px;
    left: -300px;
    animation: float 12s ease-in-out infinite;
}

.contact-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.15) 0%, transparent 70%);
    bottom: -250px;
    right: -250px;
    animation: float 10s ease-in-out infinite reverse;
}

.contact-container {
    max-width: 700px;
    width: 100%;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.contact-heading {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 2px;
}

.contact-subheading {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-weight: 400;
}

.contact-form {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: var(--spacing-lg);
    transition: var(--transition-smooth);
}

.contact-form:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    background: var(--accent-gradient);
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    color: #000;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-bounce);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 242, 254, 0.3);
}

.submit-btn svg {
    transition: transform 0.3s ease;
}

.submit-btn:hover svg {
    transform: translateX(5px) rotate(-45deg);
}

/* ========================================
   CONTACT FORM RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        padding: var(--spacing-md);
    }

    .contact-section {
        padding: var(--spacing-md) var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .submit-btn {
        font-size: 1rem;
        padding: 14px 24px;
    }
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE & TABLET
   ======================================== */

/* Tablets (Portrait) and Small Laptops */
@media (max-width: 1024px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-md: 1.5rem;
    }

    .hero-name {
        font-size: clamp(2.5rem, 7vw, 5rem);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 2vw, 1.3rem);
    }

    .slide img,
    .slide video {
        max-width: 92%;
        max-height: 80vh;
    }

    .caption-overlay {
        width: 88%;
        max-width: 550px;
    }

    .contact-container {
        max-width: 650px;
    }
}

/* Tablets (Portrait) and Large Phones (Landscape) */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 2.5rem;
        --spacing-md: 1.25rem;
    }

    /* Hero Section */
    .hero-name {
        font-size: clamp(2rem, 6vw, 4rem);
        letter-spacing: 1.5px;
    }

    .hero-subtitle {
        font-size: clamp(0.85rem, 2vw, 1.1rem);
    }

    .scroll-indicator {
        margin-top: var(--spacing-md);
        font-size: 0.85rem;
    }

    /* Navigation Buttons - Touch Friendly */
    .nav-button {
        width: 55px;
        height: 55px;
    }

    .nav-button.prev {
        left: var(--spacing-sm);
    }

    .nav-button.next {
        right: var(--spacing-sm);
    }

    .nav-button svg {
        width: 22px;
        height: 22px;
    }

    /* Slides */
    .slide img,
    .slide video {
        max-width: 95%;
        max-height: 75vh;
        border-radius: 16px;
    }

    /* Caption Overlay */
    .caption-overlay {
        width: 90%;
        padding: var(--spacing-sm);
        bottom: var(--spacing-sm);
        border-radius: 16px;
    }

    .caption-title {
        font-size: 1.3rem;
    }

    /* Slide Counter */
    .slide-counter {
        top: var(--spacing-sm);
        right: var(--spacing-sm);
        padding: 10px 18px;
        font-size: 1rem;
    }

    #currentSlide {
        font-size: 1.3rem;
    }

    /* Dots Navigation - Smaller for Tablet */
    .dots-container {
        bottom: 150px;
        gap: 10px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    /* Text Overlay */
    .slide-text-overlay {
        font-size: clamp(1.5rem, 5vw, 3rem);
        letter-spacing: 2px;
        text-shadow:
            2px 2px 0 var(--accent-cyan),
            4px 4px 0 var(--accent-purple),
            6px 6px 0 var(--accent-pink),
            8px 8px 15px rgba(0, 0, 0, 0.5);
    }

    /* Contact Form */
    .contact-section {
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .contact-heading {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .contact-subheading {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        padding: var(--spacing-md);
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 0.95rem;
    }

    .submit-btn {
        font-size: 1rem;
        padding: 14px 28px;
    }

    /* Footer */
    .footer {
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .footer-links {
        gap: var(--spacing-sm);
    }
}

/* Mobile Phones (Portrait) */
@media (max-width: 480px) {
    :root {
        --spacing-lg: 2rem;
        --spacing-md: 1rem;
        --spacing-sm: 0.75rem;
    }

    /* Hero Section */
    .hero-section {
        padding: 0 var(--spacing-sm);
    }

    .hero-name {
        font-size: clamp(1.8rem, 8vw, 3rem);
        letter-spacing: 1px;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: clamp(0.8rem, 3vw, 1rem);
        padding: 0 var(--spacing-sm);
    }

    .scroll-indicator {
        margin-top: var(--spacing-md);
        font-size: 0.8rem;
    }

    .scroll-arrow {
        font-size: 1.5rem;
    }

    /* Navigation Buttons - Larger for Touch */
    .nav-button {
        width: 48px;
        height: 48px;
    }

    .nav-button.prev {
        left: 8px;
    }

    .nav-button.next {
        right: 8px;
    }

    .nav-button svg {
        width: 20px;
        height: 20px;
    }

    /* Slides */
    .slide img,
    .slide video {
        max-width: 98%;
        max-height: 65vh;
        border-radius: 12px;
    }

    /* Caption Overlay */
    .caption-overlay {
        width: 92%;
        padding: 12px;
        bottom: 8px;
        border-radius: 12px;
    }

    .caption-title {
        font-size: 1.1rem;
        padding: 6px;
    }

    /* Slide Counter */
    .slide-counter {
        top: 8px;
        right: 8px;
        padding: 8px 14px;
        font-size: 0.9rem;
        border-radius: 20px;
    }

    #currentSlide {
        font-size: 1.1rem;
    }

    /* Dots Navigation - Smaller for Mobile */
    .dots-container {
        bottom: 120px;
        gap: 8px;
    }

    .dot {
        width: 6px;
        height: 6px;
    }

    /* Progress Bar */
    .progress-bar {
        height: 3px;
    }

    /* Text Overlay */
    .slide-text-overlay {
        font-size: clamp(1.2rem, 6vw, 2rem);
        letter-spacing: 1px;
        white-space: normal;
        max-width: 90%;
        padding: 0 var(--spacing-sm);
        text-shadow:
            1.5px 1.5px 0 var(--accent-cyan),
            3px 3px 0 var(--accent-purple),
            4.5px 4.5px 0 var(--accent-pink),
            6px 6px 12px rgba(0, 0, 0, 0.5);
    }

    /* Contact Form */
    .contact-section {
        min-height: auto;
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .contact-heading {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 0.75rem;
    }

    .contact-subheading {
        font-size: clamp(0.85rem, 3vw, 1rem);
        margin-bottom: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }

    .contact-form {
        padding: var(--spacing-md) var(--spacing-sm);
        border-radius: 16px;
    }

    .form-group {
        margin-bottom: var(--spacing-sm);
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 11px 14px;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .submit-btn {
        font-size: 0.95rem;
        padding: 13px 24px;
        gap: 10px;
        border-radius: 10px;
    }

    .submit-btn svg {
        width: 18px;
        height: 18px;
    }

    /* Footer */
    .footer {
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .footer p {
        font-size: 0.85rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }

    .footer-link {
        font-size: 0.85rem;
    }
}

/* Small Mobile Phones */
@media (max-width: 360px) {
    .hero-name {
        font-size: clamp(1.5rem, 9vw, 2.5rem);
    }

    .nav-button {
        width: 44px;
        height: 44px;
    }

    .slide img,
    .slide video {
        max-height: 60vh;
    }

    .caption-title {
        font-size: 1rem;
    }

    .slide-counter {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .dots-container {
        bottom: 110px;
    }

    .dot {
        width: 5px;
        height: 5px;
    }

    .contact-heading {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}

/* Landscape Mode for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .slide img,
    .slide video {
        max-height: 80vh;
    }

    .caption-overlay {
        bottom: 12px;
    }

    .dots-container {
        bottom: 100px;
    }

    .contact-section {
        min-height: auto;
        padding: var(--spacing-lg) var(--spacing-md);
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {

    /* Larger touch targets */
    .nav-button,
    .submit-btn {
        min-height: 44px;
        min-width: 44px;
    }

    /* Remove hover effects on touch devices */
    .nav-button:hover,
    .dot:hover,
    .submit-btn:hover,
    .footer-link:hover {
        transform: none;
    }

    /* Active states for touch feedback */
    .nav-button:active {
        transform: translateY(-50%) scale(0.95);
    }

    .submit-btn:active {
        transform: scale(0.98);
    }

    .dot:active {
        transform: scale(1.2);
    }
}