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

:root {
    --primary: #5C3317;
    --secondary: #D4AF37;
    --background: #FFF8F0;
    --white: #FFFFFF;
    --text: #2b1a0f;
    --shadow: 0 15px 35px rgba(0,0,0,0.12);
}

body {
    font-family: "Roboto", sans-serif;
    background: var(--background);
    color: var(--text);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: "Roboto", serif;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.section {
    padding: 100px 8%;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 45px;
    color: var(--primary);
}

.section-title p {
    margin-top: 10px;
    color: #777;
}



/* Buttons */

.btn {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.secondary-btn {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}



/* Navigation */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 248, 240, 0.9);
    backdrop-filter: blur(10px);
}


.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 8%;
}


.logo {
    font-size: 28px;
    font-weight: 700;
    color: #5C3317;
    text-decoration: none;
}


.logo span {
    color: #D4AF37;
}


.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
    align-items: center;
}


.nav-links li {
    list-style: none;
}


.nav-links a {
    text-decoration: none;
    color: #5C3317;
    font-weight: 500;
}


.nav-links a:hover {
    color: #D4AF37;
}


.nav-btn {
    background: #D4AF37;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
}


.menu-toggle {
    display: none;
    font-size: 25px;
    }

.hero {
  min-height: 20vh;
  display: flex;
  align-items: center;
  padding: 20px;
  background-size: cover;
  background-position: center;
}
