:root {
    --primary-color: #ff1493; /* Hot Pink */
    --secondary-color: #4a0e2a; /* Deep Magenta */
    --accent-color: #d4af37; /* Gold */
    --text-color: #ffffff;
    --bg-dark: #12030a;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

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

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

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(74, 14, 42, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

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

.nav-btn {
    background: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: white !important;
}

.nav-btn:hover {
    background: #ff69b4;
    color: white !important;
}

.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(18, 3, 10, 0.7), rgba(74, 14, 42, 0.8)), url('images/bg.png') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 20px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    animation: fadeIn 1.5s ease-out;
}

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

.avatar-container {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.6);
    margin-bottom: 1rem;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--bg-dark);
}

.glow-text {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: #fff;
    text-shadow: 0 0 20px var(--primary-color), 0 0 40px var(--primary-color);
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e2e8f0;
}

.announcement-banner {
    background: rgba(255, 20, 147, 0.15);
    border: 1px solid rgba(255, 20, 147, 0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    margin: 1rem 0;
}

.announcement-banner strong {
    color: var(--accent-color);
}

.dates {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-top: 0.3rem;
}

.btn-primary, .btn-facebook {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 3rem;
    background: linear-gradient(45deg, var(--primary-color), #ff69b4);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 20px rgba(255, 20, 147, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.btn-facebook {
    background: linear-gradient(45deg, #1877F2, #4c9aff);
    box-shadow: 0 10px 20px rgba(24, 119, 242, 0.4);
}

.btn-primary:hover, .btn-facebook:hover {
    transform: translateY(-3px);
    border-color: var(--accent-color);
}
.btn-primary:hover { box-shadow: 0 15px 25px rgba(255, 20, 147, 0.6); }
.btn-facebook:hover { box-shadow: 0 15px 25px rgba(24, 119, 242, 0.6); }

/* Common Section Styles */
.services, .portfolio, .about, .booking-section {
    padding: 6rem 5%;
    background-color: var(--bg-dark);
    text-align: center;
}

h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.section-desc {
    color: #94a3b8;
    margin-bottom: 4rem;
}

/* Services */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(145deg, #1e0611, #2d0a1b);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 20, 147, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 20, 147, 0.2);
    border-color: var(--primary-color);
}

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

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.service-card p {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.price-tag {
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-top: auto;
}

/* Portfolio Showcase */
.portfolio {
    background: linear-gradient(rgba(18, 3, 10, 0.95), rgba(74, 14, 42, 0.95)), url('images/bg.png') center/cover fixed;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-item {
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1; /* Makes them perfectly square */
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: transform 0.3s, border-color 0.3s;
    background-color: rgba(255, 20, 147, 0.1);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.portfolio-item:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(74, 14, 42, 0.4);
    padding: 4rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
}

/* Booking Section */
.booking-section {
    background-color: #0a0105;
}

.booking-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255, 20, 147, 0.05);
    border: 1px solid rgba(255, 20, 147, 0.3);
    border-radius: 20px;
}

.booking-content p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    padding: 4rem 5% 2rem;
    border-top: 1px solid rgba(255, 20, 147, 0.2);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #94a3b8;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-links a {
    color: #e2e8f0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
}

.social-links i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .glow-text { font-size: 2.8rem; }
    .subtitle { font-size: 1rem; }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(74, 14, 42, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 1.5rem;
        transform: translateY(-150%);
        transition: transform 0.3s;
        z-index: -1;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .hamburger { display: block; }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}
