/*
Theme Name: Flores Discovery
Theme URI: https://example.com/flores-discovery
Author: Your Name
Author URI: https://example.com
Description: A custom modern WordPress theme built specifically for Elementor page builder.
Version: 1.0.0
Text Domain: flores-discovery
*/

/* Import Montserrat and Inter from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@700;800&display=swap');

/* Basic Reset & Elements */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #1a2a3a;
    background-color: #ffffff;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

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

/* =========================================
   1. Premium Light Sticky Header Styles
   ========================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(11, 27, 43, 0.04);
    transition: all 0.3s ease;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-branding .custom-logo-link img {
    max-height: 45px;
    width: auto;
    display: block;
}

.site-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: 0.5px;
}

.site-title a {
    color: #0b1b2b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-title a:hover {
    color: #dfb15b;
}

.site-description {
    display: none;
}

/* Navigation Menu Styling */
.main-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-navigation ul li {
    position: relative;
}

.main-navigation ul li a {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #4a5568;
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.main-navigation ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #dfb15b;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item > a,
.main-navigation ul li.current_page_item > a {
    color: #0b1b2b;
}

.main-navigation ul li a:hover::after,
.main-navigation ul li.current-menu-item > a::after,
.main-navigation ul li.current_page_item > a::after {
    width: 100%;
}

/* Dropdown Sub-menu Styling */
.main-navigation ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 220px;
    flex-direction: column;
    gap: 0;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 15px 35px rgba(11, 27, 43, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 0;
    z-index: 100;
}

.main-navigation ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation ul ul li {
    width: 100%;
}

.main-navigation ul ul li a {
    padding: 10px 20px;
    display: block;
    color: #4a5568;
    white-space: nowrap;
}

.main-navigation ul ul li a::after {
    display: none;
}

.main-navigation ul ul li a:hover {
    background-color: #f8fafc;
    color: #dfb15b;
}


/* =========================================
   2. Hero Section Styles
   ========================================= */
.komodoku-hero-container {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/wp-content/uploads/2026/08/cta-image-1-1.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 20px 120px 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(7, 19, 31, 0.82) 0%, rgba(15, 35, 55, 0.65) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    color: #ffffff;
}

.hero-tagline {
    font-family: 'Inter', sans-serif;
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #dfb15b;
    margin-bottom: 15px;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #f0f4f8;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-button-group {
    font-family: 'Inter', sans-serif;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn-primary {
    background-color: #dfb15b;
    color: #0b1b2b;
    box-shadow: 0 4px 15px rgba(223, 177, 91, 0.3);
}

.btn-primary:hover {
    background-color: #c99c43;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(223, 177, 91, 0.4);
    color: #0b1b2b;
}

.btn-secondary {
    background-color: rgba(11, 27, 43, 0.4);
    color: #ffffff;
    border: 2px solid #dfb15b;
    padding: 12px 30px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background-color: #dfb15b;
    color: #0b1b2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(223, 177, 91, 0.3);
}

.btn-primary:focus-visible, 
.btn-secondary:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 3px;
    box-shadow: 0 0 0 5px rgba(223, 177, 91, 0.5);
}


/* =========================================
   3. Premium Footer Styling
   ========================================= */
.site-footer {
    background-color: #0b1b2b;
    color: #e2e8f0;
    font-family: 'Inter', sans-serif;
    padding-top: 80px;
    border-top: 1px solid rgba(223, 177, 91, 0.2);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 50px;
}

.footer-brand-col .custom-logo-link {
    display: inline-block;
    margin-bottom: 15px;
}

.footer-brand-col .custom-logo-link img {
    max-height: 50px;
    width: auto;
    display: block;
}

.footer-brand-col .footer-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 15px 0;
    letter-spacing: 0.5px;
}

.footer-brand-col .footer-logo-text a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-brand-col .footer-logo-text a:hover {
    color: #dfb15b;
}

.footer-brand-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #94a3b8;
    margin: 0;
}

.footer-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #dfb15b;
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
}

.footer-links-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col ul li a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-links-col ul li a:hover {
    color: #dfb15b;
}

.footer-contact-info {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #94a3b8;
    margin: 0 0 10px 0;
}

.site-info {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background-color: #07131f;
    padding: 25px 20px;
}

.footer-bottom-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #94a3b8;
}

.footer-bottom-wrapper p {
    margin: 0;
}

.site-info a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-info a:hover {
    color: #dfb15b;
}


/* =========================================
   4. Responsive Breakpoints
   ========================================= */
@media (max-width: 992px) {
    .site-header {
        padding: 15px 20px;
    }
    .main-navigation {
        display: none;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-brand-col {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    .hero-button-group {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }
    .hero-btn {
        width: 100%;
        text-align: center;
    }
    .btn-secondary {
        padding: 14px 30px;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 40px;
    }
    .footer-brand-col {
        grid-column: span 1;
    }
    .footer-bottom-wrapper {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}