:root {
    --primary-color: #ffffff;
    --accent-color: #d4af37;
    /* Gold */
    --text-color: #333333;
    --bg-color: #0a0a0a;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
    --transition-speed: 0.8s;
}

/* Localization Utilities */
.en-sm {
    font-size: 0.7em;
    opacity: 0.7;
    margin-left: 5px;
    font-family: var(--font-sans);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.en-block {
    display: block;
    font-size: 0.4em;
    /* Relative to the parent heading */
    opacity: 0.6;
    font-family: var(--font-sans);
    letter-spacing: 2px;
    margin-top: 5px;
    text-transform: uppercase;
    font-weight: 400;
}

.en-sub-inline {
    display: inline-block;
    font-size: 0.8em;
    margin-left: 10px;
    opacity: 0.8;
}


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

body {
    font-family: var(--font-sans);
    color: var(--primary-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.9);
    /* Solid dark background for readability */
}

.logo {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 40px;
    /* Adjust based on logo aspect ratio */
    width: auto;
}

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

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.nav-links li a:hover {
    opacity: 1;
    color: var(--accent-color);
}

/* Hamburger Menu Icon */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Full Screen Slider */
.slider-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--transition-speed) ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Overlay for text readability */
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slide-title {
    font-family: var(--font-serif);
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease 0.4s;
}

.slide-subtitle {
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 40px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease 0.6s;
}

.slide.active .slide-title,
.slide.active .slide-subtitle,
.slide.active .btn {
    opacity: 1;
    transform: translateY(0);
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    transition: all 0.3s ease 0.8s;
    /* Delayed appearance */
    opacity: 0;
    transform: translateY(20px);
}

.btn:hover {
    background-color: var(--primary-color);
    color: var(--bg-color);
}

/* Slider Controls */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.dot {
    width: 10px;
    height: 10px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .slide-title {
        font-size: 2.5rem;
    }

    .navbar {
        padding: 20px;
    }

    /* Mobile Menu Styles */
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 100%;
        background-color: var(--bg-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s ease;
        z-index: 1000;
        background: rgba(0, 0, 0, 0.95);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        opacity: 0;
        margin: 20px 0;
    }

    .nav-links.active li {
        animation: navLinkFade 0.5s ease forwards 0.3s;
    }

    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* Store Page Styles */
.menu-gallery {
    background-color: #1a1a1a;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    background: #000;
    border: 1px solid #333;
    padding: 10px;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.gallery-desc {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
    text-align: left;
    padding: 0 5px;
}

.store-page {
    background-color: #111;
}

.store-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content h1 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.hero-content p {
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}

.section {
    padding: 80px 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--accent-color);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--accent-color);
}

.concept-content p {
    font-size: 1.1rem;
    line-height: 2;
    color: #ccc;
}

.menu-list {
    text-align: left;
    background: #1a1a1a;
    padding: 40px;
    border: 1px solid #333;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #333;
}

.menu-list li:last-child {
    border-bottom: none;
}

.map-placeholder,
.instagram-feed-placeholder {
    margin-top: 30px;
    background: #222;
    padding: 20px;
    border: 1px dashed #555;
    color: #777;
}

.access-info p {
    margin-bottom: 10px;
    color: #ccc;
}

/* Main Footer Styles */
.main-footer {
    background-color: #000;
    color: #ccc;
    padding: 60px 20px 20px;
    border-top: 1px solid #222;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 40px;
}

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

.company-info h3 {
    font-family: var(--font-serif);
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.company-info .company-details {
    margin-bottom: 20px;
}

.company-info .co-name {
    font-weight: 500;
    color: #fff;
    margin-bottom: 5px;
    font-size: 1rem;
}

.company-info .co-address {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.company-info p {
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-links h3 {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: column;
    /* Fill columns first */
    direction: rtl;
    /* Right column first, then Left column */
    gap: 10px 30px;
}

.footer-links li {
    margin-bottom: 0;
    direction: ltr;
    /* Reset text direction for content */
    text-align: left;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 20px;
    font-size: 0.8rem;
    color: #555;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-section {
        text-align: left;
    }
}

/* Company Profile Modal Styles */
.footer-link-highlight {
    color: #fff;
    text-decoration: underline;
    transition: opacity 0.3s;
}

.footer-link-highlight:hover {
    opacity: 0.8;
}

.profile-list {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 15px;
    margin: 20px 0;
    text-align: left;
}

.profile-list dt {
    font-weight: bold;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.profile-list dd {
    color: #555;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    margin: 0;
}

/* Store List Section (Top Page) */
.store-list {
    background-color: #0a0a0a;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.store-card {
    background: #111;
    border: 1px solid #222;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.store-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-color);
}

.store-card-image {
    height: 200px;
    overflow: hidden;
}

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

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

.store-card-content {
    padding: 25px;
    text-align: left;
}

.store-card-content h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.store-card-content p {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-text {
    color: var(--accent-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.btn-text:hover {
    border-bottom-color: var(--accent-color);
    letter-spacing: 2px;
}

/* Contact Page Styles */
.page-header {
    height: 25vh;
    /* Reduced from 40vh */
    min-height: 200px;
    /* Ensure decent height on small screens */
    background-color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
    /* Offset for fixed navbar */
}

.page-header h1 {
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 5px;
    /* Reduced from 10px */
    line-height: 1.1;
    /* Tighter line height */
}

.page-header p {
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ccc;
}

.contact-form-section {
    background-color: #f9f9f9;
    /* Light background for contrast */
    padding: 40px 20px;
    /* Reduced top/bottom padding from 80px */
    color: #333;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Confirmation Modal */
/* Confirmation Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.modal-content h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.5rem;
    text-align: center;
}

.modal-content p {
    text-align: center;
    margin-bottom: 25px;
    color: #666;
}

.conf-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.conf-label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.conf-value {
    display: block;
    color: #555;
    word-break: break-all;
}

.modal-actions {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
}

.btn-secondary {
    background-color: #ccc;
    color: #333;
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
    flex: 1;
}

.btn-secondary:hover {
    background-color: #bbb;
}

.modal-actions .btn-submit {
    flex: 1;
    margin-top: 0;
    /* Reset margin from form style */
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.required {
    color: #cc0000;
    margin-left: 3px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    /* Thin gray border */
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: #fff;
    color: #333;
}

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

.form-group textarea {
    resize: vertical;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.checkbox-text {
    font-size: 0.9rem;
}

.btn-submit {
    display: inline-block;
    padding: 15px 50px;
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 20px;
}

.btn-submit:hover {
    background-color: #bfa140;
    /* Darker shade */
    transform: translateY(-2px);
}

.error-message {
    color: #ff0000;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
    /* Hidden by default */
}

/* Thanks Page Styles */
.thanks-page {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #0a0a0a;
}

.thanks-content h1 {
    font-family: var(--font-serif);
    font-size: 4rem;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 40px;
}

/* Responsive Form */
@media (max-width: 768px) {
    .contact-form {
        padding: 30px 20px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }
}