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

:root {
    --primary-gold: #e2b740;
    --primary-dark-gold: #b38b22;
    --primary-orange: #ff7b00;
    --primary-red: #c02626;
    --clay-brown: #8b4513;
    
    --bg-dark: #0d0806;
    --bg-card: #160e0a;
    --bg-card-hover: #22150f;
    
    --text-main: #f9f4ef;
    --text-muted: #c9baa8;
    
    --glow-color: rgba(226, 183, 64, 0.4);
    --glow-orange: rgba(255, 123, 0, 0.3);
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', 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-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

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

ul {
    list-style: none;
}

/* Typography Utilities */
.text-gold { color: var(--primary-gold); }
.text-orange { color: var(--primary-orange); }
.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-gold), var(--primary-orange));
    color: var(--bg-dark);
    box-shadow: 0 4px 15px var(--glow-color);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px var(--glow-orange);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
}

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

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

header.scrolled {
    background: rgba(13, 8, 6, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 5%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(226, 183, 64, 0.1);
}

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

.logo img {
    height: 80px;
    width: auto;
    border-radius: 50%;
    box-shadow: 0 0 20px var(--glow-color);
}

.logo span {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(to right, #fff, var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(226, 183, 64, 0.2);
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition);
    box-shadow: 0 0 10px var(--primary-gold);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out, transform 10s ease-out;
    transform: scale(1.1);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(13,8,6,0.9) 0%, rgba(13,8,6,0.7) 50%, rgba(13,8,6,0.2) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 600px;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeUp 1s ease 0.2s both;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    animation: fadeUp 1s ease 0.4s both;
}

.hero-btns {
    display: flex;
    gap: 20px;
    animation: fadeUp 1s ease 0.6s both;
}

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

/* Floating Diyos Animation */
.floating-diyos {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}

.diyo-particle {
    position: absolute;
    width: 15px;
    height: 15px;
    background: radial-gradient(circle, #fff 0%, var(--primary-gold) 40%, transparent 70%);
    border-radius: 50%;
    box-shadow: 0 0 20px 5px var(--glow-color);
    animation: float 5s infinite ease-in-out;
    opacity: 0;
}

@keyframes float {
    0% { transform: translateY(0) scale(0.8); opacity: 0; }
    20% { opacity: 0.8; }
    50% { transform: translateY(-50px) scale(1.2); opacity: 1; box-shadow: 0 0 30px 10px var(--glow-orange); }
    80% { opacity: 0.8; }
    100% { transform: translateY(-100px) scale(0.8); opacity: 0; }
}

/* Sections General */
section {
    padding: 100px 5%;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background-color: #eadfc5; /* Soft, warm sand color, less harsh than pure white */
    background-image: url('data:image/svg+xml;utf8,<svg opacity="0.04" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23b38b22" d="M50 0 C50 50 100 50 100 50 C50 50 50 100 50 100 C50 50 0 50 0 50 C50 50 50 0 50 0 Z"/></svg>');
    background-size: 100px;
    color: #1a0f0a;
}

.about .section-header h2 {
    color: #1a0f0a;
}

.about .section-header h2 .text-gold {
    color: var(--primary-dark-gold);
}

.about .section-header p {
    color: #4a3b32;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-logo img {
    width: 100%;
    max-width: 550px;
    height: auto;
    display: block;
    mix-blend-mode: multiply; /* Hides the white background */
    clip-path: inset(2px); /* Shaves 2px off all edges to hide the red square line */
    border-radius: 20px; /* Softly rounds the corners without cutting off the text at the bottom */
    transition: var(--transition);
}

.about-logo:hover img {
    transform: scale(1.03);
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-dark-gold);
}

.about-text p {
    margin-bottom: 20px;
    color: #4a3b32;
    font-size: 1.05rem;
}

.about .btn-outline {
    border-color: var(--primary-dark-gold);
    color: var(--primary-dark-gold);
}

.about .btn-outline:hover {
    background: var(--primary-dark-gold);
    color: #fff;
    box-shadow: 0 4px 15px rgba(179, 139, 34, 0.4);
}

/* Services Section */
.services {
    background-color: #080504;
}

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

.service-card {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(226, 183, 64, 0.1);
    position: relative;
    group: hover;
}

.service-card:hover {
    transform: translateY(-10px);
    background: var(--bg-card-hover);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(226, 183, 64, 0.1);
    border-color: rgba(226, 183, 64, 0.3);
}

.service-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

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

.service-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, var(--bg-card), transparent);
    transition: var(--transition);
}

.service-card:hover .service-img::after {
    background: linear-gradient(to top, var(--bg-card-hover), transparent);
}

.service-content {
    padding: 25px;
    position: relative;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-dark);
    border: 1px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -25px;
    right: 25px;
    color: var(--primary-gold);
    font-size: 1.5rem;
    box-shadow: 0 0 15px rgba(226, 183, 64, 0.2);
    z-index: 2;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #fff;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-link:hover {
    color: var(--primary-orange);
    gap: 10px;
}

/* Call to Action */
.cta {
    background: linear-gradient(rgba(13,8,6,0.8), rgba(13,8,6,0.9)), url('../images/hero-wedding.png') center/cover fixed;
    text-align: center;
    padding: 120px 5%;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 0 20px rgba(226, 183, 64, 0.4);
}

.cta p {
    font-size: 1.2rem;
    color: var(--text-main);
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Contact Page Specifics */
.page-header {
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(13,8,6,0.7), rgba(13,8,6,0.9)), url('../images/hero-wedding.png') center/cover;
    text-align: center;
    padding-top: 80px; /* space for nav */
}

.page-header h1 {
    font-size: 3.5rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(226, 183, 64, 0.4);
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    padding: 40px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid rgba(226, 183, 64, 0.1);
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-gold);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(226, 183, 64, 0.1);
    color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #fff;
}

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

.contact-form {
    padding: 40px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid rgba(226, 183, 64, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-main);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    background: var(--bg-dark);
    border: 1px solid rgba(226, 183, 64, 0.2);
    border-radius: 10px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 15px rgba(226, 183, 64, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

/* Footer */
footer {
    background: #050302;
    padding: 80px 5% 30px;
    border-top: 1px solid rgba(226, 183, 64, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-about .logo {
    margin-bottom: 20px;
}

.footer-about p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-gold);
    border: 1px solid rgba(226, 183, 64, 0.2);
}

.social-links a:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
    box-shadow: 0 0 15px var(--glow-color);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-gold);
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: var(--text-muted);
}

.footer-links ul li a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 { font-size: 3rem; }
    .about-grid, .contact-wrap { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(13, 8, 6, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease;
        border-left: 1px solid rgba(226, 183, 64, 0.1);
        z-index: 999;
    }

    nav ul.active {
        right: 0;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1000;
    }

    .hero h1 { font-size: 2.5rem; }
    .hero-btns { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
}
