/* --- GLOBAL VARIABLES --- */
:root {
    --sunset-orange: #ff4d00;
    --deep-black: #1a1a1a;
    --off-white: #f9f9f9;
    --gray-border: #eeeeee;
    --text-color: #333333;
}

/* --- RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
    scroll-behavior: smooth;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
}

section {
    padding: 80px 10%;
}

/* --- NAVIGATION --- */
nav {
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    display: flex;
    align-items: center; /* This centers the text vertically with the image */
    gap: 15px;           /* This creates a clean space between the logo and text */
    text-decoration: none;
    font-family: 'Playfair Display', serif; /* Or your preferred font */
}

.logo img {
    height: 50px;        /* Adjust this to fit your nav height */
    width: auto;         /* Keeps the logo from stretching */
    display: block;
}

.logo span {
    color: var(--sunset-orange);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--deep-black);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--sunset-orange);
}

/* --- BUTTONS --- */
.btn {
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    display: inline-block;
}

.btn-orange {
    background: var(--sunset-orange);
    color: white;
}

.btn-orange:hover {
    background: #e64500;
}

.btn-black {
    background: var(--deep-black);
    color: white;
}

.btn-black:hover {
    background: #333;
}

.btn-link {
    text-decoration: none;
    color: var(--sunset-orange);
    font-weight: 700;
    font-size: 0.9rem;
}

/* --- GRIDS --- */
.grid {
    display: grid;
    gap: 40px;
}

/* --- FORM STYLING --- */
input, select, textarea {
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    border: 1px solid #ddd;
    border-radius: 2px;
    transition: 0.3s;
}

input:focus, textarea:focus {
    border-color: var(--sunset-orange);
}

/* --- FOOTER --- */
footer {
    border-top: 1px solid var(--gray-border);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        gap: 15px;
    }

    section {
        padding: 50px 5%;
    }
}