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

:root {
    --primary-color: #D4AF37; /* Metallic Gold */
    --primary-glow: rgba(212, 175, 55, 0.4);
    --secondary-color: #F5F5DC; /* Beige */
    --bg-color: #0a0a0a; /* Deep Black */
    --bg-lighter: #1a1a1a;
    --text-color: #ffffff;
    --text-muted: #cccccc;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --transition: all 0.3s ease;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
    color: var(--text-muted);
}

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

a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 8px var(--primary-glow);
}

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

.section {
    padding: 80px 0;
}

.text-center { text-align: center; }
.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
    font-size: 1rem;
}

.btn:hover {
    background-color: var(--primary-color);
    color: var(--bg-color);
    box-shadow: 0 0 15px var(--primary-glow);
}

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

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 50px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links li a {
    color: var(--text-color);
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links li a:hover, .nav-links li a.active {
    color: var(--primary-color);
}

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

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(rgba(10,10,10,0.7), rgba(10,10,10,0.9));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeIn 1.5s ease;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
    font-style: italic;
    font-family: var(--font-heading);
}

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

.service-card {
    background: var(--bg-lighter);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.1);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.service-card p {
    font-size: 0.95rem;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -15px; left: -15px;
    right: 15px; bottom: 15px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    z-index: -1;
}

/* Features List */
.features-list {
    list-style: none;
    margin-top: 20px;
}

.features-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
}

.features-list li i {
    color: var(--primary-color);
}

/* Testimonials */
.testimonials {
    background-color: var(--bg-lighter);
}

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

.testimonial-card {
    background: var(--bg-color);
    padding: 30px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: bold;
    font-family: var(--font-heading);
}

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

.pricing-card {
    background: var(--bg-lighter);
    padding: 40px 30px;
    border: 1px solid rgba(212,175,55,0.2);
    text-align: center;
    border-radius: 8px;
    transition: var(--transition);
}

.pricing-card:hover { border-color: var(--primary-color); }
.pricing-card h3 { color: var(--secondary-color); font-size: 1.8rem; }
.pricing-price { font-size: 2.5rem; color: var(--primary-color); margin: 20px 0; font-family: var(--font-heading); }
.pricing-list { list-style: none; margin-bottom: 30px; }
.pricing-list li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.pricing-list li:last-child { border-bottom: none; }

/* Contact/Booking Form */
.form-container {
    background: var(--bg-lighter);
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(212,175,55,0.2);
}

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; color: var(--secondary-color); }
.form-control {
    width: 100%;
    padding: 12px 15px;
    background: var(--bg-color);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-color);
    border-radius: 4px;
    font-family: var(--font-body);
}

.form-control:focus { outline: none; border-color: var(--primary-color); }
textarea.form-control { resize: vertical; height: 120px; }

/* Floating Buttons */
.floating-whatsapp {
    position: fixed;
    bottom: 20px; right: 20px;
    background-color: #25D366;
    color: white;
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: var(--transition);
}
.floating-whatsapp:hover { transform: scale(1.1); color: white; }

.floating-call {
    position: fixed;
    bottom: 90px; right: 20px;
    background-color: var(--primary-color);
    color: var(--bg-color);
    width: 60px; height: 60px;
    border-radius: 50%;
    display: none; align-items: center; justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
}

/* Footer */
footer {
    background-color: var(--bg-lighter);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(212,175,55,0.2);
}

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

.footer-col h4 { color: var(--secondary-color); margin-bottom: 20px; font-size: 1.5rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-muted); }
.footer-links a:hover { color: var(--primary-color); }

.social-links { display: flex; gap: 15px; margin-top: 20px; }
.social-links a {
    width: 40px; height: 40px;
    background: var(--bg-color);
    border: 1px solid var(--primary-color);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    color: var(--primary-color);
}
.social-links a:hover { background: var(--primary-color); color: var(--bg-color); }

.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; flex-direction: column; width: 100%; position: absolute;
        top: 100%; left: 0; background: var(--bg-lighter); padding: 20px 0;
        border-bottom: 1px solid var(--primary-color);
    }
    .nav-links.active { display: flex; }
    .mobile-menu-btn { display: block; }
    .hero-title { font-size: 2.5rem; }
    .about-content { flex-direction: column; }
    .floating-call { display: flex; }
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* Gallery slider */
.gallery-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 15px;
}
.gallery-item {
    position: relative; overflow: hidden; border-radius: 8px; height: 300px;
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover; transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.1); }

/* FAQ Section */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--bg-lighter); margin-bottom: 15px; border-radius: 4px; border: 1px solid rgba(212,175,55,0.2); }
.faq-q { padding: 20px; cursor: pointer; display: flex; justify-content: space-between; font-family: var(--font-heading); color: var(--secondary-color); font-size: 1.2rem; }
.faq-a { padding: 0 20px; max-height: 0; overflow: hidden; transition: var(--transition); }
.faq-item.active .faq-a { padding: 0 20px 20px; max-height: 500px; }
.faq-item.active .faq-q { color: var(--primary-color); }

.page-header {
    background-color: var(--bg-lighter); padding: 120px 0 60px; text-align: center; border-bottom: 1px solid rgba(212,175,55,0.2);
}
.page-header h1 { font-size: 3rem; margin-bottom: 10px; }
.page-header p { color: var(--secondary-color); font-style: italic; font-size: 1.2rem; }


/* Force Logo Sizes */
.logo { max-height: 40px !important; width: auto !important; object-fit: contain !important; }
.logo-container img { max-height: 40px !important; height: auto !important; }

