/* ================================================
   GLOBAL VARIABLES & RESET
   ================================================ */
:root {
    --primary-color: #43302a;
    --secondary-color: #fffaeb;
    --accent-color: #907659;
    --text-color: #fffaeb;
    --white-color: #ffffff;
    --gold-color: #9c6b08;
    --dark-brown: #43302a; 
    --cream-color: #fffaeb;
    --footer-text-color: #5d4a43;
    --footer-button-bg: #907659;
    --header-height: 75px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
    background-color: var(--white-color);
    padding-top: var(--header-height); 
}

h1, h2, h3, h4 {
    font-family: 'Cormorant', serif;
    font-weight: 400;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

section, footer {
    padding: 6rem 0;
    overflow: hidden;
}

/* ================================================
   HEADER & NAVIGATION
   ================================================ */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--gold-color);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 3rem;
}

.logo-wrapper {
    display: flex;
    align-items: center; 
}

.logo-icon {
    height: 120px;
    filter: drop-shadow(2px 4px 8px rgba(0, 0, 0, 0.3));
}

.logo-text-image {
    height: 250px;
    margin-left: -50px;
    filter: drop-shadow(2px 4px 8px rgba(0, 0, 0, 0.3));
}

.navigation-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem; 
    transition: all 0.3s ease-in-out;
}

.nav-link {
    color: var(--cream-color);
    text-decoration: none;
    font-weight: 600;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.nav-link:hover {
    border-bottom-color: rgba(255, 250, 235, 0.7);
}

.nav-link.active {
    font-weight: 700;
    border-bottom-color: var(--cream-color);
}

.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--cream-color);
    transition: all 0.3s ease;
}

/* ================================================
   FOOTER SECTION
   ================================================ */

#contact {
    background-color: var(--cream-color);
}

.footer-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-left {
    flex-shrink: 0;
    max-width: 500px;
}

.footer-right {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 100%;
}

.footer-left h2 {
    font-family: 'Cormorant', serif;
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    color: var(--footer-text-color);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.footer-text {
    color: var(--footer-text-color);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.footer-text p {
    margin-bottom: 1rem;
    max-width: 450px;
}

.contact-button {
    display: inline-block;
    background-color: #43302a;
    color: var(--white-color);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.contact-button:hover {
    background-color: #7a685c;
}

.contact-block {
    margin-bottom: 2rem;
}

.contact-block h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--footer-text-color);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.contact-block a {
    color: var(--footer-text-color);
    text-decoration: none;
    border-bottom: 1px solid var(--footer-text-color);
    display: block;
    width: fit-content;
    margin-bottom: 0.5rem;
    transition: color 0.3s, border-color 0.3s; 
}

.contact-block a:hover {
    color: var(--gold-color);
    border-bottom-color: var(--gold-color);
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    margin-right: 0.5rem;
    font-size: 1.2rem;
    color: var(--primary-color);
    text-decoration: none; 
    transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}

.social-icons a:hover {
    background-color: var(--primary-color);  
    border-color: var(--primary-color);     
    color: var(--white-color);
}

.footer-logo {
    max-width: 200px;
    align-self: flex-end;
    margin-top: auto;
}

/* ================================================
   RESPONSIVE STYLES
   ================================================ */

@media screen and (max-width: 768px) {
  .burger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 70%;
    height: calc(100vh - var(--header-height));
    background-color: var(--gold-color);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 2rem;
    transition: right 0.5s ease-in-out;
    z-index: 999;
  }

  .nav-links.nav-active {
    right: 0;
  }

  .nav-menu {
    display: block;
  }

  .footer-grid {
    flex-direction: column;
  }

  .footer-right, .footer-logo {
    align-self: flex-start;
  }

  .footer-logo {
    margin-top: 1.5rem;
  }
}

/* ================================================
   SCROLL ANIMATION STYLES
   ================================================ */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}
