:root {
    --primary-yellow: #F4C430;
    --deep-red: #C1121F;
    --leaf-green: #386641;
    --black: #1B1B1B;
    --bg-color: #FAF3E0;
    --white: #ffffff;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    --shadow: 0 4px 15px rgba(0,0,0,0.05);
    --shadow-hover: 0 10px 25px rgba(0,0,0,0.1);
    --border-radius: 12px;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--black);
    line-height: 1.6;
    background-image: url('https://www.transparenttextures.com/patterns/handmade-paper.png'); /* Subtle paper texture */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--deep-red);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* NAVBAR */
.navbar {
    background: rgba(250, 243, 224, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-yellow);
    box-shadow: var(--shadow);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--deep-red);
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo span {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--black);
    font-weight: 400;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 5px;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--deep-red);
    transition: width 0.3s;
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a:hover {
    color: var(--deep-red);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--deep-red);
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 25px;
    background: var(--deep-red);
    color: var(--white);
    border-radius: 30px;
    font-weight: 500;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    border: 2px solid var(--deep-red);
    cursor: pointer;
}

.btn:hover {
    background: transparent;
    color: var(--deep-red);
}

.btn-secondary {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: var(--black);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--primary-yellow);
}

/* CARDS */
.card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(193, 18, 31, 0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-yellow);
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: var(--shadow);
    z-index: 1001;
    animation: bounce 2s infinite;
}

.whatsapp-float a {
    color: white;
}

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

/* FOOTER */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: 50px;
    border-top: 5px solid var(--primary-yellow);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer .logo {
    color: var(--primary-yellow);
}

.footer .logo span {
    color: var(--white);
}

.footer-section h4 {
    color: var(--primary-yellow);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a:hover {
    color: var(--primary-yellow);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-yellow);
}

.social-icons a:hover {
    background: var(--primary-yellow);
    color: var(--black);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Add mobile menu logic later */
    }
    .mobile-menu-btn {
        display: block;
    }
    .footer-content {
        flex-direction: column;
    }
}
