/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
    --primary-color: #5D1919;
    /* Deep Henna Red */
    --secondary-color: #D4AF37;
    /* Gold */
    --bg-color: #FAF4EB;
    /* Cream/Off-white */
    --text-color: #2C2C2C;
    --overlay-dark: rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Header */
header {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo img {
    height: 60px;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--secondary-color);
}

.nav-icon {
    font-size: 1.4rem;
    /* Slightly larger for icons */
    display: flex;
    /* alignment */
    align-items: center;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, rgba(93, 25, 25, 0.6) 100%);
}

.hero-video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-content {
    color: #fff;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.5s ease forwards 0.5s;
}

.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 4.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.3s;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.cta-button:hover {
    background: var(--secondary-color);
    color: #000;
}

/* Infinite Marquee */
.marquee-section {
    padding: 4rem 0;
    background: #fff;
    overflow: hidden;
}

.marquee-title {
    text-align: center;
    font-family: 'Cinzel', serif;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.marquee-container {
    display: flex;
    width: 200%;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    flex: 0 0 auto;
    width: 300px;
    margin-right: 20px;
    height: 400px;
    border-radius: 10px;
    /* Slight rounded corners */
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.marquee-item:hover img {
    transform: scale(1.05);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 3rem;
    background-color: var(--bg-color);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header .divider {
    height: 3px;
    width: 80px;
    background: var(--secondary-color);
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 1;
    /* Square images */
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(93, 25, 25, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    border: 1px solid var(--secondary-color);
    padding: 0.5rem 1.5rem;
}

/* Contact Section */
.contact-section {
    background-color: var(--primary-color);
    color: #fff;
    padding: 5rem 3rem;
    text-align: center;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s;
}

.icon-box:hover {
    transform: translateY(-5px);
}

.icon-box i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.icon-box span {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Footer */
footer {
    background-color: #3e1212;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 1.5rem;
    font-size: 0.8rem;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    nav {
        display: none;
        /* Mobile menu to be implemented if needed */
    }

    .contact-icons {
        gap: 1.5rem;
    }
}


/* ================= MOBILE RESPONSIVE FIXES ================= */

@media (max-width: 1024px) {
    header {
        padding: 1rem 2rem;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .gallery-section {
        padding: 4rem 2rem;
    }
}

@media (max-width: 768px) {

    /* Header */
    header {
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem 1.5rem;
    }

    .logo img {
        height: 45px;
    }

    nav {
        display: block;
    }

    nav ul {
        gap: 1.2rem;
    }

    nav a {
        font-size: 0.9rem;
    }

    /* Hero */
    .hero {
        height: 90vh;
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 2.4rem;
        letter-spacing: 1px;
    }

    .hero p {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }

    /* Marquee */
    .marquee-item {
        width: 220px;
        height: 300px;
    }

    /* Gallery */
    .gallery-section {
        padding: 3rem 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Contact */
    .contact-section {
        padding: 4rem 1.5rem;
    }

    .contact-icons {
        gap: 2rem;
    }

    .icon-box i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {

    /* Hero */
    .hero h1 {
        font-size: 1.9rem;
    }

    .hero p {
        font-size: 0.85rem;
    }

    /* Marquee */
    .marquee-item {
        width: 180px;
        height: 240px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-icons {
        flex-direction: column;
        gap: 1.5rem;
    }

    footer {
        font-size: 0.7rem;
    }
}
