/* theme-light.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
    --bg-color: #ffffff;
    --text-color: #333333;
    --accent-color: #000000;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

/* Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: absolute;
    width: 100%;
    z-index: 10;
    background: linear-gradient(rgba(0,0,0,0.5), transparent); /* Helps text pop on hero */
}
.site-header a { color: #fff; text-decoration: none; margin-left: 20px; font-weight: 600; }
.logo-container img { max-height: 100px; }
.main-nav { display: flex; align-items: center; }

/* Google Translate Fixes */
#google_translate_element { margin-left: 20px; }
.goog-te-gadget-simple { background-color: transparent !important; border: 1px solid #fff !important; padding: 5px !important; border-radius: 4px; }
.goog-te-gadget-simple span { color: #fff !important; font-family: var(--font-body); }

/* Hero */
.hero-section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: #fff;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
}
.hero-content { position: relative; z-index: 1; }
.hero-content h1 { font-family: var(--font-heading); font-size: 4rem; margin-bottom: 20px; letter-spacing: 2px;}
.btn-primary {
    display: inline-block; padding: 12px 30px;
    background-color: #fff; color: #000;
    text-decoration: none; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px;
    transition: 0.3s ease;
}
.btn-primary:hover { background-color: #ddd; }

/* Hero Buttons Wrapper */
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap; /* Helps buttons stack on small mobile screens */
}

/* New WhatsApp Button */
.btn-whatsapp {
    display: inline-flex; 
    align-items: center;
    gap: 8px; /* Space between icon and text */
    padding: 12px 30px;
    background-color: #25D366; /* Official WhatsApp Green */
    color: #fff;
    text-decoration: none; 
    font-weight: 600;
    text-transform: uppercase; 
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.btn-whatsapp:hover { 
    background-color: #1DA851; 
}


/* About */
.about-section {
    display: flex; padding: 100px 5%; align-items: center; gap: 50px;
}
.about-text, .about-image { flex: 1; }
.about-text h2 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 20px; }
.about-image img { width: 100%; height: auto; object-fit: cover; aspect-ratio: 4/5; }

/* Contact */
.contact-section {
    display: flex; padding: 100px 5%; background-color: #f9f9f9; gap: 50px;
}
.contact-info, .contact-map { flex: 1; }
.contact-info h2 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 20px; }
.contact-info p { margin-bottom: 15px; font-size: 1.1rem; }
.social-icons { margin-top: 20px; }
.social-icons a { color: var(--accent-color); font-size: 1.5rem; margin-right: 15px; transition: 0.3s; }
.social-icons a:hover { opacity: 0.6; }

/* Footer */
.site-footer {
    text-align: center; padding: 40px 5%; background-color: #111; color: #fff;
}
.carey-credit { margin-top: 20px; font-size: 0.8rem; color: #aaa; }
.carey-credit img { max-height: 25px; margin-top: 10px; opacity: 0.8; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-section, .contact-section { flex-direction: column; }
    .site-header { flex-direction: column; background: #000; }
    .main-nav { margin-top: 15px; flex-wrap: wrap; justify-content: center;}
    #google_translate_element { margin-top: 10px; }
    .hero-content h1 { font-size: 2.5rem; }
}
