@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Montserrat:wght@300;400;600;700&display=swap');

:root {
    --primary-red: #8B0000;
    --light-red: #B22222;
    --royal-gold: #D4AF37;
    --bright-gold: #FFD700;
    --dark-bg: #111;
    --card-bg: #1a1a1a;
    --text-light: #f5f5f5;
    --text-muted: #cccccc;
    --transition: all 0.3s ease-in-out;
}

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

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

h1, h2, h3, h4, h5, h6, .brand-logo {
    font-family: 'Cinzel', serif;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    background: rgba(17, 17, 17, 0.95);
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--royal-gold);
    transition: background 0.3s;
}

header.scrolled {
    background: rgba(139, 0, 0, 0.95); /* Deep red when scrolled */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.brand-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--bright-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.brand-logo span {
    color: var(--text-light);
}

/* Nav */
nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 5px 10px;
    transition: var(--transition);
}

nav ul li a:hover, nav ul li a.active {
    color: var(--bright-gold);
    border-bottom: 2px solid var(--bright-gold);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    color: var(--bright-gold);
    cursor: pointer;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(45deg, var(--primary-red), var(--light-red));
    color: #fff;
    padding: 15px 30px;
    border: 2px solid var(--royal-gold);
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--royal-gold), var(--bright-gold));
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    border-color: var(--primary-red);
}

/* Page Banner (For secondary pages) */
.page-banner {
    padding: 150px 5% 80px;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(139,0,0,0.8)), url('assets/images/event_planning_1775669053203.png') center/cover;
    border-bottom: 5px solid var(--royal-gold);
}

.page-banner h1 {
    font-size: 3rem;
    color: var(--bright-gold);
    margin-bottom: 15px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(139, 0, 0, 0.4)), url('assets/images/hero_bg_1775668994114.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    animation: fadeInDown 1.5s ease;
}

.hero h1 {
    font-size: 4rem;
    color: var(--bright-gold);
    text-shadow: 2px 2px 5px rgba(0,0,0,0.8);
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

/* Sections General */
section {
    padding: 80px 5%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--bright-gold);
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-red);
}

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

.about-image {
    flex: 1;
    border: 5px solid var(--royal-gold);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content {
    flex: 1;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.highlight-box {
    background: var(--card-bg);
    padding: 20px;
    border-left: 4px solid var(--royal-gold);
    border-radius: 5px;
}

.highlight-box h4 {
    color: var(--bright-gold);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

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

.service-card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.2);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    border-color: var(--royal-gold);
}

.service-img {
    height: 250px;
    overflow: hidden;
}

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

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-info {
    padding: 25px;
    text-align: center;
}

.service-info h3 {
    color: var(--bright-gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-info p {
    color: var(--text-muted);
}

/* Contact Section */
.contact-container {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--bright-gold);
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.contact-form {
    flex: 1;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--dark-bg);
    border: 1px solid #333;
    color: var(--text-light);
    border-radius: 5px;
    font-family: inherit;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--royal-gold);
}

.map-container {
    margin-top: 50px;
    border-radius: 10px;
    overflow: hidden;
    border: 5px solid var(--royal-gold);
}

/* Footer */
footer {
    background: #0a0a0a;
    padding: 40px 5% 20px;
    border-top: 2px solid var(--primary-red);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-section h3 {
    color: var(--bright-gold);
    margin-bottom: 20px;
}

.footer-section p, .footer-section a {
    color: var(--text-muted);
    margin-bottom: 10px;
    display: block;
}

.footer-section a:hover {
    color: var(--bright-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: var(--text-muted);
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.action-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transition: transform 0.3s;
}

.action-btn:hover {
    transform: scale(1.1);
}

.btn-whatsapp {
    background-color: #25D366; /* Green */
}

.btn-call {
    background-color: #007bff; /* Blue */
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .about-container, .contact-container {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
}

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

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-red);
        flex-direction: column;
        padding: 20px 0;
        text-align: center;
    }

    nav ul.show {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}
