@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;600&display=swap');

:root {
    --bg-color: #121212;
    --card-bg: #1a1a1a;
    --gold: #D4AF37;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --gold-light: #FFD700;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* Grain Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

h1,
h2,
h3,
.serif {
    font-family: var(--font-serif);
    font-weight: 700;
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.8) 0%, rgba(18, 18, 18, 0) 100%);
    backdrop-filter: blur(5px);
}

.logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    filter: brightness(1.2) contrast(1.1);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-smooth);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 992px) {
    nav {
        padding: 1.5rem 5%;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(18, 18, 18, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: var(--transition-smooth);
        z-index: 1050;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .nav-links a::after {
        display: none;
    }

    nav .btn-gold {
        display: none;
        /* Hide on mobile to simplify nav */
    }
}

/* Premium Button */
.btn-gold {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.6rem 1.6rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-block;
}

.btn-gold:hover {
    background: var(--gold);
    color: var(--bg-color);
    box-shadow: 0 0 20px var(--gold-glow);
}

/* Background Effects */
.light-leak {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    filter: blur(80px);
}

/* Sections */
section {
    padding: 8rem 5%;
    position: relative;
}

/* Catering Section */
.catering-preview {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/parallax-11-dj.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 5%;
}

.catering-preview .catering-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}

.catering-preview h2 {
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--gold);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Catering Page Specific Styles */
.catering-hero {
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background-image: url('images/parallax-11-dj.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.catering-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 5%;
    max-width: 900px;
}

.catering-hero-content h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--text-primary);
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: 5px;
    font-weight: 700;
}

.catering-hero-content .separator-gold {
    width: 120px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 3rem;
}

.catering-hero-content p {
    font-size: 1.4rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
    font-weight: 800;
    max-width: 800px;
    margin: 0 auto;
}

/* Catering Details Section */
.catering-details {
    padding: 0;
    background: #0d0d0d;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.details-image {
    position: relative;
    overflow: hidden;
}

.details-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.details-content {
    background: #1a1a1a;
    padding: 6rem 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1.1;
}

.gold-tag {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.details-content .separator-gold {
    margin: 0 0 3rem 0;
    width: 80px;
    height: 2px;
    background: var(--gold);
    transition: width 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.catering-details.reveal .separator-gold {
    width: 15rem;
}

.content-body p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.catering-types h4 {
    color: var(--text-primary);
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.catering-types ul {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.catering-types li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.catering-types li::before {
    content: '•';
    color: var(--gold);
}

.content-body .highlight {
    color: var(--text-primary);
    font-weight: 700;
    border-left: 2px solid var(--gold);
    padding-left: 1.5rem;
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .details-grid {
        grid-template-columns: 1fr;
    }

    .details-image {
        height: 50vh;
    }

    .details-content {
        padding: 4rem 8%;
    }

    .catering-types ul {
        grid-template-columns: 1fr;
    }
}

/* CTA Banner */
.cta-banner {
    background: var(--gold);
    padding: 3rem 5%;
    text-align: center;
}

.cta-banner-content h2 {
    color: white;
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 800;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.masonry-item {
    cursor: pointer;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    border: 1px solid var(--gold);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 45px;
    color: #f1f1f1;
    font-size: 60px;
    font-weight: 300;
    transition: 0.3s;
    cursor: pointer;
    line-height: 1;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--gold);
    text-decoration: none;
    cursor: pointer;
}

/* Lightbox Navigation */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition-smooth);
    z-index: 2005;
}

.lightbox-nav:hover {
    background: var(--gold);
    color: white;
    box-shadow: 0 0 20px var(--gold-glow);
    border-color: var(--gold);
}

.lightbox-nav.prev {
    left: 40px;
}

.lightbox-nav.next {
    right: 40px;
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .lightbox-nav.prev {
        left: 15px;
    }

    .lightbox-nav.next {
        right: 15px;
    }
}

.catering-preview p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    text-transform: uppercase;
    line-height: 1.8;
    letter-spacing: 1px;
    font-weight: 400;
}

/* Features Section */
.features-section {
    padding: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.feature-box {
    padding: 5rem 6%;
}

.feature-dark {
    background: #1a1a1a;
}

.feature-light {
    background: #2a2a2a;
}

.feature-header {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
}

.feature-tag {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.feature-brand {
    color: var(--text-secondary);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.feature-box h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.3;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Refinement: Left Aligned with Full Background */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: 0 10%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(18, 18, 18, 0.9) 0%, rgba(18, 18, 18, 0.4) 100%), url('https://rumi.com.mk/images/Slider1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    z-index: 10;
    max-width: 700px;
    position: relative;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-transform: none;
    letter-spacing: -1px;
}

.hero h1 span {
    display: inline;
    color: var(--gold);
}

@media (max-width: 768px) {
    .hero {
        padding: 0 5%;
        background-attachment: scroll;
        /* Fix for mobile parallax lag */
    }

    .hero h1 {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
        margin-bottom: 1.5rem;
    }
}

.hero .sub-headline {
    font-size: 1.1rem;
    max-width: 600px;
    color: var(--text-secondary);
    margin: 0 0 4rem 0;
    text-align: left;
    border-left: 2px solid var(--gold);
    padding-left: 2rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .hero .sub-headline {
        font-size: 1rem;
        padding-left: 1.5rem;
        margin-bottom: 3rem;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--gold);
    opacity: 0.6;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--gold);
    border-radius: 15px;
    position: relative;
}

.mouse::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

.hero-visual {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    width: 80%;
    height: 70%;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s ease-out;
}

.hero:hover .hero-main-img {
    transform: scale(1.1);
}

/* Story Section: Alternating Grid */
.story-section {
    padding: 12rem 8% 6rem;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.story-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8%;
    align-items: center;
}

.story-row.reverse {
    direction: rtl;
}

.story-row.reverse .story-content {
    direction: ltr;
}

.story-image {
    width: 100%;
    height: 600px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    position: relative;
    background: var(--card-bg);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 5s ease-out;
}

.story-row:hover .story-image img {
    transform: scale(1.05);
}

.story-content {
    padding-right: 2rem;
}

.serif-tag {
    font-size: 0.9rem;
    letter-spacing: 5px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
}

.story-content h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-primary);
    letter-spacing: -1px;
    text-transform: uppercase;
}

.story-content h2 span {
    color: var(--gold);
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    max-width: 550px;
}

@media (max-width: 992px) {
    .story-section {
        padding: 8rem 5%;
        gap: 6rem;
    }

    .story-row {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .story-row.reverse {
        direction: ltr;
    }

    .story-content {
        padding-right: 0;
        order: 2;
    }

    .story-content p {
        margin: 0 auto;
    }

    .story-image {
        height: 400px;
        order: 1;
    }
}

@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 10rem;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero .sub-headline {
        margin: 0 auto 3rem;
        padding: 0;
        border: none;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }
}

/* Removed Antigravity Classes */

.separator-gold {
    width: 200px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto;
    opacity: 0.6;
}

/* Footer Styles */
footer {
    background: #1a1a1a;
    padding: 0;
}

.footer-content {
    padding: 5rem 5%;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-col h4 {
    color: var(--text-primary);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-col p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #121212;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.copyright a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
}

.copyright a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gold);
    color: var(--bg-color);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* Contact Page Styles */
.contact-hero {
    padding-top: 12rem;
    min-height: 100vh;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-info .info-item {
    margin-bottom: 3rem;
}

.contact-info h3 {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.nav-link,
.gold-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.nav-link:hover,
.gold-link:hover {
    opacity: 0.7;
}

.map-container {
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 5px;
    overflow: hidden;
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.map-container:hover .map-image {
    transform: scale(1.02);
}

/* Local SEO Page Styles */
.seo-container {
    padding-top: 120px;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 5%;
    padding-right: 5%;
}

.seo-title {
    margin-bottom: 2rem;
    color: var(--gold);
}

.seo-section {
    margin-bottom: 3rem;
}

.seo-heading {
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--gold);
    padding-left: 1rem;
    font-size: 1.5rem;
}

.seo-text {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.seo-contact-card {
    margin-bottom: 5rem;
    padding: 2.5rem;
    background: var(--card-bg);
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.card-title {
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.card-item {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.card-footer {
    margin-top: 2rem;
    font-style: italic;
}

/* Global Mobile Fixes */
@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding: 0 5%;
    }

    .contact-hero {
        padding-top: 8rem;
    }

    .contact-hero h1 {
        font-size: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .story-section {
        padding: 6rem 5% 4rem;
    }
}

@media (max-width: 768px) {
    .seo-container {
        padding-top: 100px;
    }

    .seo-heading {
        font-size: 1.3rem;
    }

    .seo-contact-card {
        padding: 1.5rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}