/* ===========================
   Variables and Reset
   =========================== */
:root {
    --navy: #1a3a52;
    --cream: #f5f0e8;
    --gold: #c9a961;
    --dark-navy: #0f2433;
    --light-gold: #d4b976;
    --white: #ffffff;
    --serif: 'Cormorant Garamond', serif;
    --sans-serif: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans-serif);
    color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--serif);
    font-weight: 600;
    line-height: 1.2;
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    /* background-color: transparent; */
    background: linear-gradient(135deg, var(--navy) 0%, var(--dark-navy) 100%);
    /* transition: all 0.3s ease; */
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background-color: var(--navy);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--serif);
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--white) !important;
}

.logo-f {
    font-size: 2rem;
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}

.brand-name {
    font-weight: 600;
}

.nav-link {
    color: var(--white) !important;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 1px;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.nav-link:hover {
    color: var(--gold) !important;
}

/* ===========================
   Hero Section
   =========================== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy) 0%, var(--dark-navy) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23c9a961" opacity="0.05"/></svg>');
    background-size: 50px 50px;
    animation: moveBackground 30s linear infinite;
}

@keyframes moveBackground {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-logo {
    font-family: var(--serif);
    font-size: 10rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 400;
    text-shadow: 0 4px 20px rgba(201, 169, 97, 0.3);
}

.hero-title {
    font-size: 4rem;
    color: var(--white);
    letter-spacing: 8px;
    margin-bottom: 2rem;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--cream);
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 300;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===========================
   Animations
   =========================== */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-delay-1 {
    animation: fadeIn 1s ease-out 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

.fade-in-delay-3 {
    animation: fadeIn 1s ease-out 0.9s both;
}

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

/* ===========================
   Buttons
   =========================== */
.btn-gold {
    background-color: var(--gold);
    color: var(--white);
    border: 2px solid var(--gold);
    padding: 1rem 3rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: 0;
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

/* ===========================
   Sections
   =========================== */
.section-padding {
    padding: 6rem 0;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--navy);
    font-weight: 600;
}

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

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

.text-navy {
    color: var(--navy);
}

/* ===========================
   About Section
   =========================== */
.about-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.about-image-container img {
    transition: transform 0.5s ease;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--navy), transparent);
    opacity: 0.2;
    z-index: 1;
}

.stat-item {
    display: inline-block;
    margin-right: 3rem;
    margin-top: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--navy);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===========================
   Services Section
   =========================== */
.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-top-color: var(--gold);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: transparent;
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: var(--gold);
    transform: scale(1.1);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--gold);
    transition: color 0.3s ease;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.service-card p {
    color: var(--navy);
    opacity: 0.8;
    font-size: 0.95rem;
}

/* ===========================
   Values Section
   =========================== */
.value-item {
    padding: 2rem;
}

.value-icon {
    width: 100px;
    height: 100px;
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    background-color: var(--gold);
    transform: scale(1.1);
}

.value-icon i {
    font-size: 2.5rem;
    color: var(--gold);
    transition: all 0.3s ease;
}

.value-item:hover .value-icon i {
    color: var(--white);
}

.value-title {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.value-item p {
    color: var(--cream);
    opacity: 0.9;
    font-size: 1rem;
    line-height: 1.8;
}

/* ===========================
   Testimonial Section
   =========================== */
.testimonial {
    padding: 3rem;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--navy);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    font-size: 1rem;
    color: var(--navy);
    opacity: 0.7;
    font-weight: 500;
}

/* ===========================
   Contact Section
   =========================== */
.contact-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.contact-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-card h3 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.contact-title {
    color: var(--gold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    font-weight: 500;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background-color: var(--cream);
}

.contact-item i {
    color: var(--gold);
    font-size: 1.2rem;
    width: 20px;
}

.contact-item a {
    color: var(--navy);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-form .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    padding: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(201, 169, 97, 0.25);
}

/* ===========================
   Footer
   =========================== */
.footer {
    border-top: 1px solid rgba(201, 169, 97, 0.3);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--gold);
}

.footer-name {
    font-family: var(--serif);
    font-size: 1.2rem;
    letter-spacing: 2px;
    font-weight: 600;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 991px) {
    .hero-logo {
        font-size: 6rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .stat-item {
        margin-right: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-logo {
        font-size: 4rem;
    }
    
    .hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-padding {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-item {
        display: block;
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .value-title {
        font-size: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .btn-gold {
        padding: 0.75rem 2rem;
    }
}

@media (max-width: 575px) {
    .hero-logo {
        font-size: 3rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .navbar-brand .brand-name {
        font-size: 1rem;
    }
    
    .logo-f {
        font-size: 1.5rem;
    }
}

/* ===========================
   Development Toast
   =========================== */
.toast-container {
    margin-bottom: 1rem;
}

#developmentToast.toast {
    border: 2px solid #dc3545;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
    min-width: 300px;
    max-width: 90vw;
}

#developmentToast .toast-header {
    border-bottom: 2px solid #dc3545;
    font-family: var(--sans-serif);
    font-weight: 500;
    letter-spacing: 1px;
}

#developmentToast .toast-body {
    font-family: var(--sans-serif);
    font-size: 0.95rem;
    padding: 1rem;
    font-weight: 500;
}

@media (max-width: 575px) {
    #developmentToast.toast {
        min-width: 280px;
    }
}


