/* ===================================
   Uschi Hein Art - Main Stylesheet
   Organic, Flowing, Nature-Inspired Design
   =================================== */

/* CSS Variables */
:root {
    --color-primary: #2d3f2f;
    --color-secondary: #5a7355;
    --color-accent: #8fa88a;
    --color-light: #e8ece8;
    --color-dark: #1a1f1a;
    --color-white: #ffffff;
    --color-off-white: #fafbfa;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-success: #4caf50;
    --color-error: #e74c3c;

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.2);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-off-white);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

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

::selection {
    background: var(--color-accent);
    color: var(--color-white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-dark);
}

h1 { font-size: clamp(2.5rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.75rem); }

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border-radius: 50px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}

.btn-light {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn-light:hover {
    background: var(--color-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-block {
    width: 100%;
}

/* Link with Arrow */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 500;
    position: relative;
}

.link-arrow::after {
    content: '→';
    transition: transform 0.3s ease;
    display: inline-block;
}

.link-arrow:hover::after {
    transform: translateX(8px);
}

.link-arrow:hover {
    color: var(--color-secondary);
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 251, 250, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.main-nav.scrolled {
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    border-bottom-color: var(--color-light);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1;
    letter-spacing: -0.5px;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.logo-subtitle {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--color-text-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 0;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    color: var(--color-text);
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    cursor: pointer;
    background: transparent;
    border: none;
    position: relative;
    z-index: 1002;
}

.nav-toggle span {
    display: block;
    width: 30px;
    height: 2.5px;
    background-color: #000 !important;
    transition: var(--transition-smooth);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-off-white) 0%, var(--color-light) 100%);
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    max-width: 550px;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s both;
}

.hero-image {
    position: relative;
    height: 550px;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    border-radius: 50% 40% 60% 40%;
    opacity: 0.08;
    animation: float 8s ease-in-out infinite;
    background: var(--color-secondary);
}

.element-1 {
    width: 350px;
    height: 350px;
    top: 5%;
    left: 5%;
    background: var(--color-secondary);
}

.element-2 {
    width: 250px;
    height: 250px;
    top: 45%;
    right: 15%;
    background: var(--color-accent);
    animation-delay: 2s;
}

.element-3 {
    width: 180px;
    height: 180px;
    bottom: 10%;
    left: 25%;
    background: var(--color-primary);
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    33% {
        transform: translateY(-25px) rotate(5deg) scale(1.05);
    }
    66% {
        transform: translateY(15px) rotate(-3deg) scale(0.95);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text-light);
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeIn 1s ease-out 1.5s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--color-text-light), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        transform: scaleY(1);
        opacity: 1;
    }
    50% {
        transform: scaleY(0.5);
        opacity: 0.5;
    }
}

/* Section Styles */
section {
    padding: 6rem 2rem;
    position: relative;
}

/* Remove hard lines between sections */
section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, currentColor);
    opacity: 0.02;
    pointer-events: none;
}

section:first-of-type::before {
    display: none;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--color-accent);
    opacity: 0.3;
}

.section-title {
    margin-bottom: 1.5rem;
}

.section-footer {
    text-align: center;
    margin-top: 5rem;
}

/* Featured Work / Gallery Grid */
.featured-work {
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-off-white) 100%);
    position: relative;
}

.gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

/* Masonry-style gallery for actual gallery page */
.masonry-grid {
    max-width: 1400px;
    margin: 0 auto;
    column-count: 3;
    column-gap: 2rem;
}

.masonry-grid .gallery-item {
    break-inside: avoid;
    margin-bottom: 2rem;
    aspect-ratio: auto;
}

@media (max-width: 1024px) {
    .masonry-grid {
        column-count: 2;
    }
}

@media (max-width: 640px) {
    .masonry-grid {
        column-count: 1;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    aspect-ratio: 4/5;
    cursor: pointer;
    background: var(--color-light);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 63, 47, 0.1), rgba(143, 168, 138, 0.1));
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-info h3 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-item-info h3 {
    transform: translateY(0);
}

.gallery-item-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.2s;
}

.gallery-item:hover .gallery-item-info p {
    transform: translateY(0);
}

/* About Preview */
.about-preview {
    background: linear-gradient(135deg, var(--color-off-white) 0%, var(--color-light) 50%, var(--color-white) 100%);
    position: relative;
    overflow: hidden;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(143, 168, 138, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-image {
    position: relative;
    aspect-ratio: 3/4;
}

.image-frame {
    width: 100%;
    height: 100%;
    background: var(--color-white);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover .image-frame img {
    transform: scale(1.05);
}

.image-frame::after {
    content: '';
    position: absolute;
    inset: -15px;
    border: 2px solid var(--color-accent);
    border-radius: 30px;
    opacity: 0.3;
    pointer-events: none;
}

.about-text {
    max-width: 600px;
}

.about-text .section-label {
    display: block;
    text-align: left;
    margin-bottom: 1rem;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

/* Booking CTA */
.booking-cta {
    position: relative;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    text-align: center;
    padding: 8rem 2rem;
    overflow: hidden;
}

.booking-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.organic-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50% 40% 60% 40%;
}

.shape-1 {
    width: 500px;
    height: 500px;
    top: -250px;
    right: -100px;
    animation: float 10s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -80px;
    animation: float 12s ease-in-out infinite reverse;
}

/* Instagram Feed */
.instagram-feed {
    background: var(--color-white);
}

.instagram-feed h2 a {
    color: var(--color-dark);
    transition: color 0.3s ease;
}

.instagram-feed h2 a:hover {
    color: var(--color-accent);
}

.instagram-note {
    text-align: center;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 2rem auto;
    font-size: 1.125rem;
}

/* Footer */
.main-footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 5rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--color-white);
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--color-white);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--color-accent);
    transform: translateY(-5px) scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Page Hero */
.page-hero {
    padding: 12rem 2rem 6rem;
    text-align: center;
    background: linear-gradient(135deg, var(--color-off-white) 0%, var(--color-light) 50%, var(--color-white) 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(143, 168, 138, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(90, 115, 85, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 30s ease-in-out infinite reverse;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-title {
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
}

/* Form Messages */
.form-message {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .hero-content {
        gap: 4rem;
    }

    .about-content {
        gap: 4rem;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-image {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-text .section-label {
        text-align: center;
    }

    .about-text .section-label::after {
        left: 50%;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 1.5rem;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .logo-text {
        font-size: 1.375rem;
    }

    .nav-toggle {
        display: flex !important;
        z-index: 1002;
        background: transparent;
        padding: 10px;
        border-radius: 4px;
        transition: var(--transition-smooth);
    }

    .nav-toggle:hover {
        background: rgba(0, 0, 0, 0.05);
    }

    .nav-toggle span {
        display: block !important;
        background-color: #000 !important;
        width: 26px;
        height: 2.5px;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-xl);
        transform: translateY(-150%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--color-light);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        font-size: 1.125rem;
        padding: 0.75rem 0;
        display: block;
        width: 100%;
    }

    .nav-menu a::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-menu a:hover::after,
    .nav-menu a.active::after {
        width: 60%;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero {
        min-height: 100vh;
        padding: 6rem 1.5rem 4rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        grid-template-columns: 1fr;
    }

    .hero-text {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: 2.75rem;
        line-height: 1.2;
        margin-bottom: 2rem;
        font-weight: 300;
    }

    .title-line {
        display: block;
    }

    .hero-description {
        font-size: 0.9375rem;
        line-height: 1.7;
        margin-bottom: 2.5rem;
        padding: 0 1.5rem;
        max-width: 100%;
        color: var(--color-text-light);
    }

    .hero-image {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 350px;
        gap: 1rem;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
        border-radius: 50px;
    }

    .btn-primary {
        background: var(--color-primary);
        color: var(--color-white);
    }

    .btn-secondary {
        background: transparent;
        color: var(--color-primary);
        border: 2px solid var(--color-primary);
    }

    .btn {
        width: 100%;
        padding: 1rem 2rem;
    }

    .page-hero {
        padding: 9rem 1.5rem 4rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .booking-cta {
        padding: 5rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .social-links {
        justify-content: center;
    }

    /* Improve touch targets */
    .btn {
        min-height: 48px;
    }

    .nav-menu a,
    .footer-section a {
        min-height: 44px;
        display: inline-block;
    }
}

@media (max-width: 640px) {
    .hero-image {
        height: 300px;
    }

    .floating-element {
        display: none;
    }

    .page-hero::before,
    .page-hero::after,
    .about-preview::before {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    .image-frame::after {
        display: none;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .main-nav {
        padding: 1rem 0;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .logo-subtitle {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }

    .hero {
        min-height: 100vh;
        padding: 7rem 1.25rem 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: clamp(2.25rem, 10vw, 3.5rem);
        line-height: 1.15;
        margin-bottom: 1.25rem;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .hero-buttons {
        gap: 0.875rem;
    }

    .hero-buttons .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    section {
        padding: 3rem 1rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .page-hero {
        padding: 8rem 1rem 3rem;
    }

    .about-content {
        gap: 2.5rem;
    }

    .gallery-grid {
        gap: 1.25rem;
    }

    .booking-cta {
        padding: 4rem 1rem;
    }

    .cta-content h2 {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.9375rem;
    }
}

@media (max-width: 375px) {
    html {
        font-size: 14px;
    }

    .nav-menu {
        padding: 1.5rem;
    }

    .hero {
        padding: 4.5rem 1rem 2rem;
    }

    section {
        padding: 2.5rem 1rem;
    }
}

/* Utility Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

.slide-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.text-center {
    text-align: center;
}

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

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
