* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --dark-bg: #0b0a08;
            --light-text: #d3d3d3;
            --accent-gold: #9e1f0c;
            /*--accent-gold: #b92c09;*/
            --white: #f0f0f0;
            --pillar-width: clamp(80px, 8vw, 160px);
        }

        body {
            font-family: 'Jost', sans-serif;
            background: var(--dark-bg);
            color: var(--light-text);
            line-height: 1.6;
            overflow-x: hidden;
            padding-left: var(--pillar-width);
            padding-right: var(--pillar-width);
             width: auto;
        }


        h1, h2, h3, h4, h5, h6 {
            font-family: 'Cormorant Garamond', serif;
            color: var(--white);
        }

        .container {
            max-width: 1700px;
            
            padding: 0 20px;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 84%;
            z-index: 1000;
            background: rgba(11, 10, 8, 0.95);
            backdrop-filter: blur(10px);
        }

        .top-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .top-bar a {
            color: var(--light-text);
            text-decoration: none;
            font-size: 14px;
            margin: 0 1px;
            transition: color 0.3s;
        }

        .top-bar a:hover {
            color: var(--accent-gold);
        }

        .main-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2px 0;
        }

        .logo img {
            height: 100px;
        }
          .logo img:nth-child(2) {
            width: 150px;   /* adjust size */
            height: auto;
        }
           .logo img.hide {
            display: none;
        }


        nav ul {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        nav a {
            color: var(--white);
            text-decoration: none;
            font-size: 16px;
            font-weight: 400;
            transition: color 0.3s;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent-gold);
            transition: width 0.3s;
        }

        nav a:hover::after {
            width: 100%;
        }

        .btn-primary {
            background: transparent;
            border: 1px solid var(--accent-gold);
            color: var(--accent-gold);
            padding: 12px 30px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary:hover {
            background: var(--accent-gold);
            color: var(--dark-bg);
        }

        /* Hero Slider */
        .hero-slider {
            margin-top: 140px;
            height: 85vh;
            position: relative;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
        }

        .slide.active {
            opacity: 1;
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            max-width:100%;
        }

        .slide-content {
            position: relative;
            top:20;
            z-index: 2;
            height: 20%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .slide-content h1 {
            font-size: 72px;
            margin-bottom: 20px;
            margin-top: 5%;
            font-weight: 200;
        }

        .slide-content h1 em {
            font-style: normal;
            color: var(--accent-gold);
            font-size: 5rem;
           
        }

        .slide-content h1 strong mark {
            background: none;
            color: var(--accent-gold);
            font-weight: 700;
        }

        .slide-content p {
            font-size: 18px;
            max-width: 600px;
            margin: 20px 0 40px;
        }

        .slide-buttons {
            display: flex;
            gap: 20px;
        }

        .btn-underline {
            color: var(--white);
            text-decoration: none;
            font-size: 16px;
            border-bottom: 1px solid var(--white);
            padding-bottom: 5px;
            transition: all 0.3s;
        }

        .btn-underline:hover {
            color: var(--accent-gold);
            border-color: var(--accent-gold);
        }

        /* Section Titles */
        .section-title {
            text-align: center;
            padding: 80px 0 60px;
        }

        .subtitle {
            color: var(--accent-gold);
            font-size: 14px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
            display: inline-block;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-gold);
        }

        .section-title h2 {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            color: var(--light-text);
        }

        /* Menu Section */
        .menu-section {
            padding: 60px 0;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .menu-column  {
            font-size: 32px;
            margin-bottom: 30px;
            color: var(--accent-gold);
            text-decoration: underline;
            text-decoration-color: var(--accent-gold);
            text-underline-offset: 10px;
        }

        .menu-item {
           /*margin-bottom: 30px;*/
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .menu-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 10px;
        }

        .menu-title {
            font-size: 20px;
            color: var(--white);
            font-weight: 500;
            flex: 1;
        }

        .menu-dots {
            flex: 0.7;
            border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
            margin: 0 15px 5px;
        }

        .menu-price {
            font-size: 20px;
            color: var(--accent-gold);
            font-weight: 500;
        }

        .menu-description {
            color: var(--light-text);
            font-size: 14px;
        }

        .menu-label {
            display: inline-block;
            background: var(--accent-gold);
            color: var(--dark-bg);
            padding: 3px 10px;
            font-size: 11px;
            margin-left: 10px;
            border-radius: 3px;
        }

        /* Image Gallery */
        .image-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin: 40px 0;
        }

        .image-grid img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        /* Call to Action */
        .cta-section {
            position: relative;
            height: 600px;
            overflow: hidden;
            margin: 60px 0;
        }

        .cta-section img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .cta-section:hover img {
            transform: scale(1.05);
        }

        .cta-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: center;
            padding: 60px;
            text-align: center;
        }

        .cta-overlay h3 {
            font-size: 42px;
            margin-bottom: 20px;
        }

        /* Testimonials */
        .testimonials {
            padding: 80px 0;
            text-align: center;
        }

        .testimonial-slider {
            max-width: 800px;
            margin: 0 auto;
        }

        .testimonial {
            padding: 40px;
        }

        .testimonial-content {
            font-size: 20px;
            font-style: italic;
            margin-bottom: 30px;
            color: var(--light-text);
        }

        .testimonial-name {
            font-size: 18px;
            color: var(--white);
            margin-bottom: 5px;
        }

        .testimonial-job {
            font-size: 14px;
            color: var(--accent-gold);
        }

        /* Block Links */
        .block-links {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }

        .block-link {
            position: relative;
            height: 600px;
            overflow: hidden;
            cursor: pointer;
        }

        .block-link img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .block-link:hover img {
            transform: scale(1.1);
        }

        .block-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 60px;
            text-align: center;
            transition: background 0.3s;
        }

        .block-link:hover .block-overlay {
            background: rgba(0, 0, 0, 0.4);
        }

        .block-overlay h3 {
            font-size: 38px;
            margin-bottom: 20px;
        }

        .block-overlay p {
            margin-bottom: 30px;
            line-height: 1.8;
        }

        /* Footer */
        footer {
            background: #000;
            padding: 60px 0 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 2fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .social-links {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .social-links a {
            color: var(--light-text);
            font-size: 18px;
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: var(--accent-gold);
        }

        .footer-menu {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .footer-menu a {
            color: var(--light-text);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-menu a:hover {
            color: var(--accent-gold);
        }

        .copyright {
            text-align: center;
            color: var(--light-text);
            font-size: 14px;
        }

        /* Mobile Menu */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 20px;
            cursor: pointer;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .top-bar {
                display: none;
            }

            nav {
                display: none;
            }

            .mobile-toggle {
                display: block;
            }

            .menu-grid {
                grid-template-columns: 1fr;
            }

            .image-grid {
                grid-template-columns: 1fr;
            }

            .block-links {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .slide-content h1 {
                font-size: 42px;
            }

            .section-title h2 {
                font-size: 36px;
            }
        }

        .center-buttons {
            text-align: center;
            padding: 40px 0;
        }

        .center-buttons .btn-primary {
            margin: 0 10px;
        }
        .ranjana {
            font-family: "RanjanaUnicode" !important;
            font-weight: 40px;
        }


  body {
    overflow-x: hidden;
}

/* Base pillar styles */
.pillar {
    position: fixed;
    top: 0;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
}

.pillar-left {
    left: 0;
}

.pillar-right {
    right: 0;
}

.pillar img {
    height: 100%;
    width: 75%; /* base width */
    display: block;
    opacity: 0.9;
}

.pillar-right img {
    margin-left: auto; /* align right pillar to edge */
}

/* Responsive adjustments */
@media (max-width: 1600px) {
    .pillar img {
        width: 60%;
    }
}

@media (max-width: 1200px) {
    .pillar img {
        width: 50%;
    }
}

@media (max-width: 992px) {
    .pillar img {
        width: 40%;
    }
}

@media (max-width: 768px) {
    .pillar img {
        width: 30%;
    }
}

@media (max-width: 576px) {
    .pillar img {
        width: 25%;
    }
}

