/* =============================================
   Snappy Scout - Moving Guide Shared Styles
   ============================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #fefefe;
    font-size: 18px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Main Navigation Header */
.main-nav {
    background: #ffffff;
    padding: 12px 0;
    border-bottom: 1px solid #c1d9c5;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 90px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #2d5f3f;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link:hover {
    background: rgba(45, 95, 63, 0.1);
    color: #1e4530;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
    min-width: 200px;
    max-width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-height: 400px;
    overflow-y: auto;
}

.dropdown-item {
    display: block;
    padding: 8px 16px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.dropdown-item:hover {
    background: #f3f4f6;
    color: #2d5f3f;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #2d5f3f;
    font-size: 24px;
    cursor: pointer;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #D9E7DC;
        flex-direction: column;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        border-top: 1px solid #c1d9c5;
        padding: 16px 0;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 12px 24px;
        justify-content: space-between;
        width: 100%;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-top: 1px solid #c1d9c5;
        background: rgba(255, 255, 255, 0.95);
        margin-top: 0;
    }

    .dropdown-grid {
        grid-template-columns: 1fr;
        max-height: 200px;
    }
}

/* Section Accent Line */
.section-accent-line {
    width: 75%;
    height: 8px;
    background: #ADD6C8;
    border-radius: 4px;
}

/* Content Styling */
.content-paragraph {
    font-size: 20px;
    line-height: 40px;
    color: #4b5563;
    margin-top: 40px;
}

.content-paragraph strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Accent Image Styling */
.accent-image {
    width: 60%;
    max-width: 700px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 24px auto;
    display: block;
    transition: transform 0.2s ease;
}

.accent-image:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .accent-image {
        width: 80%;
        margin: 20px auto;
    }
}

@media (max-width: 480px) {
    .accent-image {
        width: 90%;
        margin: 16px auto;
    }
}

/* =============================================
   Homepage Specific Styles
   ============================================= */

/* Homepage Hero Section */
.homepage-hero {
    background: linear-gradient(135deg, #FFB7C5 0%, #FFC8D8 50%, #FFD1E0 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.homepage-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ADD6C8" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 600px;
}

.hero-tagline {
    font-size: 4.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subheadline {
    font-size: 1.4rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-cta {
    margin-top: 40px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ADD6C8 0%, #8CC8B8 100%);
    color: white;
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(173, 214, 200, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(173, 214, 200, 0.4);
    background: linear-gradient(135deg, #8CC8B8 0%, #ADD6C8 100%);
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
    transform: scaleX(-1);
}

.hero-logo-img:hover {
    transform: scaleX(-1) scale(1.05);
}

/* City Guides Section */
.city-guides-section {
    background: #fff;
}

/* City Guides Hero Header */
.city-guides-hero {
    position: relative;
    height: 400px;
    background: url('../images/featured-image.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.city-guides-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.city-guides-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.bold-accent-lines {
    position: relative;
    margin-bottom: 30px;
}

.accent-line-top,
.accent-line-bottom {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 8px;
    background: linear-gradient(135deg, #ADD6C8 0%, #8CC8B8 100%);
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(173, 214, 200, 0.4);
}

.accent-line-top {
    width: 200px;
    top: -40px;
}

.accent-line-bottom {
    width: 300px;
    top: -20px;
}

.city-guides-hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    margin: 0;
    letter-spacing: -0.02em;
}

.city-guides-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 0;
}

.coming-soon-preview {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    justify-content: center;
}

.preview-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    text-align: center;
}

.preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.preview-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.preview-card:hover .preview-image {
    transform: scale(1.05);
}

.preview-content {
    padding: 32px;
}

.preview-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.preview-content p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
}

.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ADD6C8 0%, #8CC8B8 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Navigation coming soon styling */
.dropdown-item.coming-soon {
    color: #9ca3af;
    cursor: default;
    font-style: italic;
}

.dropdown-item.coming-soon:hover {
    background: none;
    color: #9ca3af;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #fefefe 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

.mission-content h2 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.mission-statement {
    font-size: 1.8rem;
    color: #4b5563;
    font-style: italic;
    margin: 40px auto 80px;
    max-width: 700px;
    line-height: 1.5;
}

.beliefs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.belief-card {
    background: #fff;
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.belief-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.belief-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.belief-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.belief-card p {
    color: #4b5563;
    line-height: 1.6;
}

/* Disclosure Section */
.disclosure-section {
    padding: 60px 0;
    background: #f8fffe;
    text-align: center;
}

.disclosure-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: #fff;
    border-radius: 16px;
    border: 2px solid #ADD6C8;
    box-shadow: 0 8px 30px rgba(173, 214, 200, 0.2);
}

.disclosure-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 16px;
}

.disclosure-content p {
    font-size: 1.2rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.disclosure-content strong {
    color: #2d5f3f;
    font-weight: 800;
}

/* Footer */
.site-footer {
    background: #2d5f3f;
    color: #fff;
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-text {
    text-align: right;
}

.footer-text p {
    margin: 0;
    color: #c1d9c5;
    line-height: 1.6;
}

.footer-text p:first-child {
    font-weight: 600;
    margin-bottom: 8px;
}

/* Responsive Design for Homepage */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 300px;
        gap: 40px;
    }
    
    .hero-tagline {
        font-size: 3.8rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr 300px;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .homepage-hero {
        padding: 60px 0 80px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-tagline {
        font-size: 3.2rem;
    }
    
    .hero-subheadline {
        font-size: 1.2rem;
    }
    
    .about-section,
    .mission-section {
        padding: 80px 0;
    }
    
    .city-guides-hero {
        height: 320px;
    }
    
    .city-guides-hero-title {
        font-size: 3.5rem;
    }
    
    .accent-line-top {
        width: 150px;
        top: -35px;
    }
    
    .accent-line-bottom {
        width: 220px;
        top: -18px;
    }
    
    .city-guides-content {
        padding: 60px 0;
    }
    
    .about-text h2,
    .mission-content h2 {
        font-size: 2.8rem;
    }
    
    .coming-soon-preview {
        margin-top: 40px;
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .preview-content {
        padding: 24px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .beliefs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-text {
        text-align: center;
    }
    
    .disclosure-content {
        padding: 30px;
        margin: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-tagline {
        font-size: 2.6rem;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 16px 28px;
        font-size: 1rem;
    }
    
    .city-guides-hero {
        height: 280px;
    }
    
    .city-guides-hero-title {
        font-size: 2.8rem;
    }
    
    .accent-line-top {
        width: 120px;
        top: -30px;
        height: 6px;
    }
    
    .accent-line-bottom {
        width: 180px;
        top: -16px;
        height: 6px;
    }
    
    .city-guides-content {
        padding: 40px 0;
    }
    
    .about-text h2,
    .mission-content h2 {
        font-size: 2.4rem;
    }
    
    .mission-statement {
        font-size: 1.4rem;
    }
    
    .coming-soon-preview {
        margin-top: 30px;
    }
    
    .preview-content {
        padding: 20px;
    }
    
    .belief-card {
        padding: 30px 24px;
    }
    
    .disclosure-content {
        padding: 24px;
        margin: 0 16px;
    }
    
    .disclosure-content h3 {
        font-size: 1.4rem;
    }
    
    .disclosure-content p {
        font-size: 1.1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
