@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Roboto:wght@300;400;500&display=swap');

:root {
    --primary: #2c3e50; /* Slate Blue */
    --accent: #c0a062;  /* Luxury Gold */
    --light: #f8f9fa;
    --dark: #1a1a1a;
    --white: #ffffff;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-3d: 0 20px 40px rgba(0,0,0,0.2);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--light);
    color: #444;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, .brand span {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
}

/* --- HEADER & NAV --- */
header {
    background: var(--white);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.brand { display: flex; align-items: center; gap: 15px; }
.brand img { height: 55px; border-radius: 50%; border: 2px solid var(--accent); }
.brand span { font-size: 1.4rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

.nav-links { display: flex; gap: 25px; }
.nav-links a { text-decoration: none; color: var(--primary); font-weight: 500; text-transform: uppercase; font-size: 0.9rem; transition: 0.3s; }
.nav-links a:hover { color: var(--accent); transform: translateY(-2px); }

.hamburger { display: none; font-size: 1.8rem; cursor: pointer; color: var(--primary); }

/* --- HERO SECTION --- */
.hero {
    height: 85vh;
    background-size: cover;
    background-position: center;
    background-color: #333; /* Fallback */
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 10%;
}

.hero::before {
    content: ''; position: absolute; top:0; left:0; width:100%; height:100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content { position: relative; z-index: 2; max-width: 650px; color: white; }
.hero h1 { font-size: 3.5rem; color: white; margin-bottom: 20px; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); }
.hero p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; }

.btn {
    display: inline-block; padding: 15px 40px; background: var(--accent); color: white;
    text-decoration: none; font-weight: bold; text-transform: uppercase; letter-spacing: 1px;
    border-radius: 2px; transition: 0.3s; border: none; cursor: pointer;
}
.btn:hover { background: var(--primary); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.3); }

/* --- SECTIONS --- */
.section-padding { padding: 80px 5%; }
.bg-white { background: var(--white); }
.text-center { text-align: center; }

.section-title { font-size: 2.5rem; margin-bottom: 10px; }
.separator { width: 80px; height: 3px; background: var(--accent); margin: 0 auto 50px auto; }

/* --- SERVICES CARD (3D Style) --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    border-bottom: 3px solid var(--accent);
    transition: 0.4s ease;
    box-shadow: var(--shadow-soft);
    display: flex; flex-direction: column;
}

.card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-3d);
}

.card-img { height: 250px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.card:hover .card-img img { transform: scale(1.1); }

.card-body { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }
.card-price { color: var(--accent); font-weight: bold; margin-top: auto; padding-top: 20px; font-size: 1.1rem; }

/* --- ADMIN (Internal Styles) --- */
.admin-container { max-width: 900px; margin: 50px auto; background: white; padding: 40px; box-shadow: var(--shadow-3d); }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: bold; color: var(--primary); }
.form-control { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; }
.service-row { background: #f9f9f9; padding: 20px; border: 1px solid #eee; margin-bottom: 20px; position: relative; }
.btn-danger { background: #e74c3c; color: white; padding: 5px 10px; border: none; cursor: pointer; position: absolute; top: 10px; right: 10px; }
.btn-success { background: #27ae60; color: white; width: 100%; margin-top: 10px; }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-links {
        position: fixed; top: 80px; right: -100%; width: 70%; height: 100vh;
        background: white; flex-direction: column; padding: 40px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1); transition: 0.4s;
    }
    .nav-links.active { right: 0; }
    .hero h1 { font-size: 2.5rem; }
    .hero { padding: 0 5%; justify-content: center; text-align: center; }
}

/* --- WHATSAPP BUTTON --- */
.btn-whatsapp {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #25d366;
    color: white;
    padding: 10px;
    margin-top: 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: 0.3s;
}
.btn-whatsapp:hover {
    background-color: #128c7e;
}