@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700&family=Noto+Serif+JP:wght@300;400;500;600;700&display=swap');

:root {
    /* Sophisticated Ocean & Sand Palette */
    --primary-color: #0a2540;      /* Deep Ocean Navy */
    --secondary-color: #c9a961;     /* Champagne Gold */
    --accent-color: #006b7d;        /* Refined Teal */
    --coral: #e8b4a3;              /* Soft Coral */
    --pearl: #f7f3ed;              /* Pearl White */
    
    /* Text Colors */
    --text-dark: #0a2540;
    --text-body: #4a5568;
    --text-light: #ffffff;
    
    /* Backgrounds */
    --bg-light: #fdfbf7;           /* Warm Ivory */
    --bg-alt: #f7f3ed;             /* Pearl Background */
    --bg-luxury: linear-gradient(135deg, #0a2540 0%, #006b7d 100%);
    
    /* Effects */
    --shadow: 0 2px 10px rgba(10, 37, 64, 0.08);
    --shadow-lg: 0 10px 30px rgba(10, 37, 64, 0.12);
    --shadow-xl: 0 20px 50px rgba(10, 37, 64, 0.15);
    
    /* Typography Scale */
    --font-display: 'Cormorant Garamond', 'Noto Serif JP', serif;
    --font-body: 'Montserrat', 'Noto Sans JP', sans-serif;
    --font-accent: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-body);
    background-color: var(--bg-light);
    letter-spacing: 0.3px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(10, 37, 64, 0.05);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-brand a {
    text-decoration: none;
    display: block;
}

.nav-brand h1 {
    font-family: var(--font-display);
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    margin: 0;
    line-height: 1;
}

.nav-brand a:hover h1 {
    color: var(--secondary-color);
}

.tagline {
    color: var(--secondary-color);
    font-size: 0.75rem;
    margin-top: 0.3rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: var(--font-accent);
    text-align: center;
}

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

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

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

.nav-menu a:hover {
    color: var(--secondary-color);
}

.lang-switch {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--secondary-color);
    padding: 0.6rem 1.2rem;
    border-radius: 0;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-family: var(--font-accent);
}

.lang-switch:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    height: 85vh;
    background: linear-gradient(rgba(10, 37, 64, 0.3), rgba(0, 107, 125, 0.3)),
                url('images/island/kagoshima_amami.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, transparent 60%, rgba(10, 37, 64, 0.2) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem 4rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-xl);
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
    border: 1px solid rgba(201, 169, 97, 0.3);
}

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

.hero-content h2 {
    font-family: var(--font-display);
    color: var(--primary-color);
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero-content p {
    color: var(--text-body);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.8;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--secondary-color);
}

/* Sections */
.section {
    padding: 80px 0;
}

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

.section-title {
    text-align: center;
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 1.5rem;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--secondary-color);
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: white;
    padding: 2.5rem;
    border: 1px solid rgba(201, 169, 97, 0.15);
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--secondary-color);
    transition: height 0.4s ease;
}

.card:hover::before {
    height: 100%;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(201, 169, 97, 0.3);
}

.card h3 {
    font-family: var(--font-display);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.card p {
    color: var(--text-body);
    line-height: 1.8;
    font-size: 0.95rem;
}

.card ul {
    list-style: none;
    padding-left: 0;
}

.card li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

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

.card li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 300;
}

/* Brand Section */
.brand-concept {
    text-align: center;
    margin-bottom: 3rem;
}

.concept-text {
    font-size: 1.8rem;
    color: var(--accent-color);
    font-style: italic;
    margin-top: 1rem;
}

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

.product-card {
    background: white;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(201, 169, 97, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.product-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.4s ease;
}

.product-card:hover::after {
    width: 80%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.product-card h4 {
    font-family: var(--font-display);
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Crowdfunding Section */
.cf-intro {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 2rem;
}

.cf-intro h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.cf-intro h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--secondary-color);
}

.project-name {
    font-size: 1.4rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-top: 2rem;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cf-content {
    max-width: 1100px;
    margin: 0 auto;
}

.cf-vision {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    margin-top: 3rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(201, 169, 97, 0.15);
}

.cf-vision h3 {
    color: var(--primary-color);
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 1px;
}

.cf-vision ul {
    list-style: none;
}

.cf-vision li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.cf-vision li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Carousel */
.carousel-container {
    max-width: 1000px;
    margin: 0 auto 3rem;
    position: relative;
}

.carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-item {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border: none;
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.carousel-control:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-control.prev {
    left: 0;
    border-radius: 0 50% 50% 0;
}

.carousel-control.next {
    right: 0;
    border-radius: 50% 0 0 50%;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* PDF Section */
.pdf-section {
    margin: 3rem 0;
    text-align: center;
}

.pdf-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.pdf-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.pdf-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: white;
    border: 1px solid var(--secondary-color);
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    font-size: 0.95rem;
}

.pdf-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--secondary-color);
    color: white;
}

.pdf-link svg {
    width: 24px;
    height: 24px;
}

/* Business Roadmap Timeline */
.business-roadmap {
    margin-top: 4rem;
    padding: 3rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(201, 169, 97, 0.15);
}

.business-roadmap h3 {
    color: var(--primary-color);
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 1.5rem;
}

.business-roadmap h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--secondary-color);
}

.roadmap-timeline {
    overflow-x: auto;
    padding: 2rem 0;
    margin: 2rem 0;
}

.timeline-track {
    position: relative;
    display: flex;
    min-width: 1000px;
    padding: 60px 20px 20px;
    justify-content: space-between;
}

.progress-line {
    position: absolute;
    top: 80px;
    left: 30px;
    right: 30px;
    height: 3px;
    background: linear-gradient(to right, 
        var(--secondary-color) 0%, 
        var(--secondary-color) 42%, 
        #ddd 42%, 
        #ddd 100%);
    z-index: 1;
}

.milestone {
    position: relative;
    flex: 1;
    text-align: center;
    min-width: 120px;
    max-width: 140px;
}

.milestone::before {
    content: attr(data-year);
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary-color);
    white-space: nowrap;
}

.milestone-dot {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
    z-index: 2;
}

.milestone.completed .milestone-dot {
    background: var(--secondary-color);
}

.milestone.current .milestone-dot {
    background: #ff6b6b;
    animation: pulse 2s infinite;
}

.milestone.future .milestone-dot {
    background: #ddd;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(255, 107, 107, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0); }
}

.milestone-content {
    margin-top: 30px;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.milestone:hover .milestone-content {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.milestone-content h4 {
    color: var(--primary-color);
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.milestone-content p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.3;
}

.timeline-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.legend-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
}

.legend-dot.completed {
    background: var(--secondary-color);
}

.legend-dot.current {
    background: #ff6b6b;
}

.legend-dot.future {
    background: #ddd;
}

/* Timeline */
.timeline {
    background: linear-gradient(135deg, var(--bg-alt) 0%, white 100%);
    display: none;
}

.timeline-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.timeline-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
}

.timeline-period {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.timeline-item p {
    color: var(--text-dark);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    text-align: center;
    padding: 4rem 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.footer h1 {
    font-family: var(--font-display);
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.copyright {
    margin-top: 2rem;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Business Roadmap Timeline - Mobile Vertical Layout */
    .roadmap-timeline {
        padding: 1rem 0;
        margin: 1rem 0;
        overflow-x: visible;
    }
    
    .timeline-track {
        display: flex;
        flex-direction: column;
        min-width: auto;
        padding: 20px;
        position: relative;
        gap: 2rem;
    }
    
    .progress-line {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 2px;
        height: auto;
        right: auto;
        transform: translateX(-50%);
        background: linear-gradient(to bottom, 
            var(--secondary-color) 0%, 
            var(--secondary-color) 30%, 
            #ddd 30%, 
            #ddd 100%);
    }
    
    .milestone {
        position: relative;
        text-align: left;
        min-width: auto;
        max-width: none;
        width: 45%;
        margin-bottom: 1rem;
    }
    
    /* Alternate left and right positioning */
    .milestone:nth-child(odd) {
        align-self: flex-start;
        text-align: right;
    }
    
    .milestone:nth-child(even) {
        align-self: flex-end;
        text-align: left;
    }
    
    .milestone::before {
        position: static;
        display: block;
        margin-bottom: 1rem;
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--primary-color);
    }
    
    .milestone-dot {
        position: absolute;
        top: 20px;
        width: 16px;
        height: 16px;
        z-index: 3;
    }
    
    .milestone:nth-child(odd) .milestone-dot {
        right: -40px;
    }
    
    .milestone:nth-child(even) .milestone-dot {
        left: -40px;
    }
    
    .milestone-content {
        margin-top: 0;
        padding: 1.2rem;
    }
    
    .milestone-content h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .milestone-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    /* Navigation Mobile */
    .navbar {
        padding: 0.8rem 0;
    }
    
    .navbar .container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-brand {
        text-align: center;
        align-items: center;
    }
    
    .nav-brand h1 {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .tagline {
        display: block;
        font-size: 0.65rem;
        margin-top: 0.2rem;
    }
    
    .nav-menu {
        display: flex;
        justify-content: center;
        gap: 1rem;
        padding: 0.5rem 0;
    }
    
    /* Hide Overview and Brand on mobile to keep nav on one line */
    .nav-menu a[href="#overview"],
    .nav-menu a[href="#branding"] {
        display: none;
    }
    
    .nav-menu a {
        font-size: 0.8rem;
        padding: 0.3rem 0.5rem;
        letter-spacing: 0.3px;
    }
    
    .lang-switch {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
    
    /* Hero adjustments for mobile nav */
    .hero {
        margin-top: 100px;
        height: 60vh;
        min-height: 400px;
        background-attachment: scroll; /* Disable fixed background on mobile */
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat; /* Prevent vertical repetition */
    }
    
    .hero-content {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
        letter-spacing: 1px;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-top: 1.2rem;
    }
    
    /* Carousel Mobile */
    .carousel {
        height: 350px;
    }
    
    .carousel-control {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .carousel-control.prev {
        left: 0;
    }
    
    .carousel-control.next {
        right: 0;
    }
    
    /* PDF Links Mobile */
    .pdf-links {
        flex-direction: column;
        align-items: center;
    }
    
    .pdf-link {
        width: 90%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-items {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    /* Timeline adjustments for very small screens */
    .business-roadmap {
        padding: 1.5rem 1rem;
    }
    
    .business-roadmap h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .timeline-track {
        padding: 10px;
        gap: 1.5rem;
    }
    
    .milestone {
        width: 42%;
    }
    
    .milestone:nth-child(odd) .milestone-dot {
        right: -30px;
    }
    
    .milestone:nth-child(even) .milestone-dot {
        left: -30px;
    }
    
    .milestone-dot {
        width: 14px;
        height: 14px;
    }
    
    .milestone-content {
        padding: 1rem;
    }
    
    .milestone-content h4 {
        font-size: 0.9rem;
    }
    
    .milestone-content p {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .timeline-legend {
        gap: 1rem;
        padding: 0.8rem;
        font-size: 0.85rem;
    }
    
    /* Very small screens - Navigation */
    .navbar {
        padding: 0.6rem 0;
    }
    
    .nav-brand h1 {
        font-size: 1.3rem;
    }
    
    .nav-menu {
        gap: 0.8rem;
    }
    
    .nav-menu a {
        font-size: 0.75rem;
        padding: 0.2rem 0.4rem;
    }
    
    .lang-switch {
        padding: 0.3rem 0.6rem;
        font-size: 0.65rem;
    }
    
    .hero {
        margin-top: 90px;
        height: 70vh;
        min-height: 450px;
        background-size: cover;
        background-position: center bottom; /* Focus on beach/ocean part */
        background-repeat: no-repeat; /* Prevent repetition */
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .card h3 {
        font-size: 1.4rem;
    }
}