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

:root {
    --primary-color: #00332B;
    --accent-color: #D4AF37;
    --background-color: #F9F9F9;
    --text-color: #333333;
    --light-text: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .serif {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

section {
    padding: 100px 5%;
}

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

/* Typography Utilities */
.text-center { text-align: center; }
.text-gold { color: var(--accent-color); }
.text-green { color: var(--primary-color); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 2px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.9rem;
}

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

.btn-primary:hover {
    background-color: #004d41;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: white;
}

/* Glassmorphism */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    transition: var(--transition);
    color: white;
}

nav.scrolled {
    background-color: var(--primary-color);
    padding: 15px 5%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.logo img {
    height: 50px;
}

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

.nav-links a {
    font-weight: 400;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.lang-switch {
    display: flex;
    gap: 10px;
}

.lang-switch a {
    font-size: 0.8rem;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.lang-switch a.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('assets/hero-bg.webp');
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 0; /* Remove default section padding to allow absolute bottom anchoring */
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 5%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    height: 100vh;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    align-self: center;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
    height: 100%;
}

.hero-image img {
    position: absolute;
    bottom: 0;
    right: 0%;
    max-height: 115vh;
    max-width: 80vw;
    width: auto;
    object-fit: contain;
    object-position: bottom right;
    filter: drop-shadow(-10px -10px 30px rgba(0,0,0,0.3));
    z-index: 1;
}

/* Footer Icons */
.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-links a:hover {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    section {
        padding: 60px 5%;
    }
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    text-align: center;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    border-bottom: 3px solid var(--accent-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.service-card h3 {
    margin: 20px 0;
    font-size: 1.5rem;
}

.icon-gold {
    font-size: 2.5rem;
    color: var(--accent-color);
}

/* Featured */
.featured {
    background-color: #f1f1f1;
}

.featured-header {
    text-align: center;
    margin-bottom: 50px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.featured-item {
    height: 450px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.featured-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.featured-item:hover .featured-img {
    transform: scale(1.05);
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}

.location {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
}

/* About Me */
.about-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image {
    flex: 1;
    background-color: #EDF1F0;
    border-radius: 20px 20px 0 0;
    padding-top: 90px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(transparent, rgba(0,51,43,0.1));
    z-index: 2;
}

.about-image img {
    width: 90%;
    margin-bottom: 0;
    display: block;
    position: relative;
    filter: drop-shadow(10px -10px 15px rgba(0,0,0,0.1));
    z-index: 1;
}

.about-content {
    flex: 1.2;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #555;
}

.about-signature {
    margin-top: 30px;
    font-size: 1.8rem;
    color: var(--primary-color);
}

/* Testimonials */
.testimonials {
    background-color: var(--primary-color);
    color: white;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-style: italic;
    font-size: 1.25rem;
}

.client-name {
    margin-top: 20px;
    font-weight: 600;
    font-style: normal;
    color: var(--accent-color);
}

/* Contact */
.container-small {
    max-width: 700px;
}

.contact-header {
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    padding: 15px;      
    border: 1px solid #ddd;
    border-radius: 2px;
    font-family: inherit;
    font-size: 1rem;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-block {
    width: 100%;
}

/* Footer */
footer {
    padding: 80px 5% 40px;
    background-color: #1a1a1a;
    color: #999;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-logo {
    height: 60px;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.copyright {
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

/* Mobile Menu Expansion */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1500;
    transition: 0.5s ease-in-out;
}

.mobile-menu.active {
    top: 0;
}

.mobile-nav-links {
    text-align: center;
}

.mobile-nav-links li {
    margin: 30px 0;
}

.mobile-nav-links a {
    color: white;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
}

/* Responsive Extensions */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 140px;
    }
    
    .hero-content {
        align-self: center;
        text-align: center;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2.6rem;
        word-wrap: break-word;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-image {
        width: 100%;
        margin-top: 30px;
    }

    .hero-image img {
        left: 50%;
        transform: translateX(-50%) translateY(10%);
        right: auto;
        max-width: 100vw;
        max-height: 65vh;
        width: auto;
        object-fit: contain;
    }

    .about-flex {
        flex-direction: column;
        gap: 30px;
    }

    .about-image {
        padding-top: 20px;
        max-height: 500px;
        align-items: flex-start;
    }

    .about-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: top center;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
}
