/* Copy all styles from the homepage provided earlier, plus add admin styles */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: 'Montserrat', sans-serif; background: #faf7f2; color: #2e241f; }
.container { max-width:1280px; margin:0 auto; padding:0 2rem; }
.gold { color:#b48c4c; }
.btn { display:inline-block; padding:0.75rem 2rem; font-weight:500; text-decoration:none; transition:0.3s; border-radius:40px; border:none; cursor:pointer; }
.btn-primary { background:#2e241f; color:white; border:1px solid #2e241f; }
.btn-primary:hover { background:#b48c4c; border-color:#b48c4c; }
.btn-wa { background:#25D366; color:white; border:1px solid #25D366; }
.btn-wa:hover { background:#128C7E; }
.btn-outline { border:1px solid #2e241f; color:#2e241f; background:transparent; }
.btn-outline:hover { background:#2e241f; color:white; }

/* navbar */
.navbar { display:flex; justify-content:space-between; align-items:center; padding:1.2rem 2rem; background:white; box-shadow:0 10px 30px rgba(0,0,0,0.03); flex-wrap:wrap; }
.logo { display:flex; align-items:center; gap:1rem; }
.logo-img { width:60px; height:60px; }
.logo-img img { width:100%; height:100%; object-fit:contain; }
.logo span { font-family:'Playfair Display', serif; font-size:1.8rem; font-weight:700; color:#2e241f; }
.nav-links { display:flex; gap:2rem; align-items:center; }
.nav-links a { text-decoration:none; color:#2e241f; font-weight:500; }
.nav-links a:hover, .nav-links a.active { color:#b48c4c; }
.admin-badge { background:#2e241f; color:white !important; padding:0.4rem 1.2rem; border-radius:40px; }
.nav-buttons { display:flex; gap:1rem; }

.floating-wa { 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:2rem; box-shadow:0 10px 20px rgba(0,0,0,0.2); z-index:999; text-decoration:none; transition:0.3s; }
.floating-wa:hover { background:#128C7E; transform:scale(1.1); }

/* hero */
.hero { background:linear-gradient(105deg, #f5efe8 0%, #fffbf5 100%); padding:4rem 2rem; border-radius:0 0 3rem 3rem; }
.hero-grid { display:grid; grid-template-columns:1fr 1fr; align-items:center; gap:3rem; }
.hero h1 { font-size:3.2rem; line-height:1.1; margin-bottom:1.5rem; }
.hero p { font-size:1.1rem; opacity:0.8; margin-bottom:2rem; }
.hero-buttons { display:flex; gap:1rem; flex-wrap:wrap; }
.hero-image { background:url('https://images.unsplash.com/photo-1560066984-138dadb4c035?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover; height:400px; border-radius:30px; box-shadow:0 30px 40px -20px rgba(0,0,0,0.3); }

/* Hero with background image */
.hero {
    position: relative;
    color: white;
    text-align: center;
    padding: 8rem 2rem;
    background-blend-mode: overlay;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero h1 { font-size: 3.5rem; }
.hero p { font-size: 1.3rem; margin-bottom: 2rem; }
.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
}
.btn-outline-light:hover {
    background: white;
    color: #2e241f;
}

/* Map section */
.map-section {
    margin: 4rem 0;
    text-align: center;
}
.map-section iframe {
    border-radius: 30px;
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}

/* Footer grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: left;
    margin-bottom: 2rem;
}
.footer-grid ul { list-style: none; }
.footer-grid a { color: #ddd2c5; text-decoration: none; }
.footer-grid a:hover { color: white; }
.social-icons a {
    display: inline-block;
    margin-right: 1rem;
    font-size: 1.5rem;
}
.footer-bottom {
    border-top: 1px solid #4a3f38;
    padding-top: 2rem;
    font-size: 0.9rem;
}

/* Booking form */
.booking-form {
    max-width: 600px;
    margin: 2rem auto;
    background: white;
    padding: 2rem;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 40px;
    font-family: inherit;
}
.booking-form button { width: 100%; }
.success {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 30px;
    text-align: center;
}


/* sections */
.section-heading { text-align:center; margin:4rem 0 2rem; }
.section-heading h2 { font-size:2.5rem; margin-bottom:0.5rem; }
.section-heading p { color:#6b5b50; }

.card-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(260px,1fr)); gap:2rem; margin:2rem 0 4rem; }
.service-card, .product-card, .team-card { background:white; border-radius:24px; padding:2rem 1.5rem; box-shadow:0 15px 30px -12px rgba(0,0,0,0.1); transition:0.25s; text-align:center; }
.service-card:hover, .product-card:hover, .team-card:hover { transform:translateY(-8px); box-shadow:0 30px 40px -15px rgba(0,0,0,0.15); }
.icon-circle { width:70px; height:70px; background:#f5efe8; border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 1.5rem; font-size:2rem; color:#b48c4c; }
.price { font-weight:700; font-size:1.4rem; margin:0.8rem 0; color:#2e241f; }
.btn-card { background:transparent; border:1px solid #b48c4c; color:#b48c4c; padding:0.5rem 1.5rem; border-radius:40px; font-weight:500; cursor:pointer; transition:0.2s; margin-top:1rem; }
.btn-card:hover { background:#b48c4c; color:white; }

.booking-banner { background:white; border-radius:30px; padding:3rem; box-shadow:0 25px 40px -20px rgba(0,0,0,0.2); display:flex; flex-wrap:wrap; justify-content:space-between; align-items:center; margin:3rem 0; }
.booking-banner h3 { font-size:2rem; max-width:400px; }
.wa-direct { display:flex; gap:1rem; background:#f5efe8; padding:1rem 2rem; border-radius:60px; align-items:center; }
.wa-direct i { color:#25D366; font-size:2rem; }

footer { background:#2e241f; color:#ddd2c5; padding:3rem 0; text-align:center; margin-top:4rem; }

/* Category titles */
.category-title {
    font-size: 2rem;
    margin: 2rem 0 1rem;
    border-bottom: 2px solid #b48c4c;
    padding-bottom: 0.5rem;
}

/* No data message */
.no-data {
    text-align: center;
    font-size: 1.2rem;
    color: #6b5b50;
    margin: 4rem 0;
}

/* Product image */
.product-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    margin-bottom: 1rem;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Team image */
.team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 3px solid #b48c4c;
}
.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-card .role {
    font-weight: 600;
    color: #b48c4c;
    margin-bottom: 0.5rem;
}
.team-card .bio {
    font-size: 0.95rem;
    color: #4a3f38;
    margin-bottom: 0.5rem;
}
.team-card .phone {
    font-size: 0.9rem;
    color: #6b5b50;
}

/* Contact page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}
.contact-info h2, .contact-form h2 {
    margin-bottom: 1.5rem;
}
.contact-info p {
    margin: 1rem 0;
    font-size: 1.1rem;
}
.contact-info i {
    width: 30px;
    color: #b48c4c;
}
.business-hours {
    margin: 2rem 0;
}
.business-hours h3 {
    margin-bottom: 0.5rem;
}
.social-links a {
    display: inline-block;
    margin-right: 1rem;
    font-size: 1.5rem;
    color: #2e241f;
    transition: color 0.3s;
}
.social-links a:hover {
    color: #b48c4c;
}
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-form input, .contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-family: inherit;
}
@media (max-width: 700px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* admin */
.admin-container { max-width:1200px; margin:2rem auto; padding:0 2rem; }
.admin-stats { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:1.5rem; margin:2rem 0; }
.stat-card { background:white; padding:1.5rem; border-radius:16px; box-shadow:0 10px 20px rgba(0,0,0,0.05); font-size:1.2rem; font-weight:600; }
.admin-menu { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:1.5rem; }
.admin-card { background:#b48c4c; color:white; padding:2rem; border-radius:20px; text-align:center; text-decoration:none; font-weight:600; transition:0.3s; }
.admin-card:hover { background:#2e241f; }

.add-form { background:white; padding:2rem; border-radius:24px; margin-bottom:2rem; display:grid; gap:1rem; max-width:600px; }
.add-form input, .add-form textarea, .add-form select { padding:0.8rem; border:1px solid #ddd; border-radius:30px; font-family:inherit; }
.admin-table { width:100%; background:white; border-radius:24px; padding:1rem; border-collapse:collapse; }
.admin-table th, .admin-table td { padding:1rem; text-align:left; border-bottom:1px solid #eee; }
.admin-table a.edit { color:#2e241f; margin-right:0.5rem; }
.admin-table a.delete { color:#b48c4c; }

.login-box { max-width:400px; margin:100px auto; background:white; padding:2rem; border-radius:30px; text-align:center; }
.login-box input { width:100%; padding:0.8rem; margin:0.5rem 0; border:1px solid #ddd; border-radius:40px; }
.error { color:red; margin:1rem 0; }