/* /assets/css/style.css */
:root {
    --sage: #7A9E9F;
    --terracotta: #E88D67;
    --cream: #F3EFE0;
    --dark-text: #2C3333;
    --white: #FFFFFF;
    --light-grey: #F5F5F5;
}

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

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--cream);
    padding-bottom: 70px; /* Space for mobile nav */
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--sage);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Desktop Nav */
.main-header {
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    color: var(--terracotta);
}

.desktop-nav ul {
    display: flex;
    list-style: none;
}

.desktop-nav li {
    margin-left: 20px;
}

.desktop-nav a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 700;
    transition: color 0.3s ease;
}

.desktop-nav a:hover {
    color: var(--sage);
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    z-index: 1000;
}

.mobile-nav ul {
    display: flex;
    width: 100%;
    justify-content: space-around;
    list-style: none;
}

.mobile-nav li a {
    text-decoration: none;
    color: var(--dark-text);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.8rem;
}

.mobile-nav li a i {
    font-size: 1.2rem;
    margin-bottom: 3px;
    color: var(--sage);
}

/* Forms & UI */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: background 0.3s ease;
}

.btn-primary {
    background-color: var(--terracotta);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #d17a56;
}

/* Visibility classes */
@media (min-width: 768px) {
    .mobile-nav {
        display: none;
    }
    body {
        padding-bottom: 0;
    }
}

@media (max-width: 767px) {
    .desktop-nav {
        display: none;
    }
}

.content-area {
    min-height: 80vh;
}

.main-footer {
    background-color: var(--dark-text);
    color: var(--white);
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}
