@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --main-color: #d3ad7f;
    --black: #13131a;
    --bg: #010103;
    --border: .1rem solid rgba(255,255,255,.3);
}

* {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-transform: capitalize;
    transition: .2s linear; 
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar {
    width: .8rem;
}

html::-webkit-scrollbar-track {
    background: transparent;
}

html::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 5rem;
}

body {
    background: var(--bg);
}

section {
    padding: 2rem 7%;
}

.heading {
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    padding-bottom: 3.5rem;
    font-size: 4rem;
}

.heading span {
    color: var(--main-color);
    text-transform: uppercase;
}

.btn {
    margin-top: 1rem;
    display: inline-block;
    padding: .9rem 3rem;
    font-size: 1.7rem;
    color: #fff;
    background: var(--main-color);
    cursor: pointer;
}

.btn:hover {
    letter-spacing: .2rem;
}

/* Enhanced Header */
.header {
    background: rgba(1,1,3,0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(211,173,127,0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header.scrolled {
    background: rgba(1,1,3,0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 7%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo img {
    height: 5rem;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.logo-text {
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--main-color);
    font-family: 'Arial', sans-serif;
}

/* Navigation */
.navbar {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--main-color), rgba(211,173,127,0.3));
    transition: left 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    left: 0;
}

.nav-link:hover,
.nav-link.active {
    color: #000;
    transform: translateY(-2px);
}

.nav-link i {
    font-size: 1.6rem;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Search Container */
.search-container {
    position: relative;
}

.search-btn {
    width: 4.5rem;
    height: 4.5rem;
    background: rgba(211,173,127,0.2);
    border: 2px solid rgba(211,173,127,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    transform: scale(1.1);
}

.search-btn:hover i {
    color: #000;
}

.search-btn i {
    color: var(--main-color);
    font-size: 1.8rem;
    transition: color 0.3s ease;
}

.search-form {
    position: absolute;
    top: 120%;
    right: 0;
    width: 350px;
    background: rgba(26,26,26,0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(211,173,127,0.3);
    border-radius: 15px;
    padding: 1.5rem;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.search-form.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.search-form input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(211,173,127,0.3);
    border-radius: 25px;
    color: #fff;
    font-size: 1.4rem;
    outline: none;
    margin-bottom: 1rem;
}

.search-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.search-submit {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(45deg, var(--main-color), #f4d03f);
    border: none;
    border-radius: 25px;
    color: #000;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.search-submit:hover {
    transform: translateY(-2px);
}

/* Cart Container */
.cart-container {
    position: relative;
}

.cart-btn {
    width: 4.5rem;
    height: 4.5rem;
    background: rgba(211,173,127,0.2);
    border: 2px solid rgba(211,173,127,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.cart-btn:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    transform: scale(1.1);
}

.cart-btn:hover i {
    color: #000;
}

.cart-btn i {
    color: var(--main-color);
    font-size: 1.8rem;
    transition: color 0.3s ease;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 0.2rem 0.6rem;
    border-radius: 50%;
    min-width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-dropdown {
    position: absolute;
    top: 120%;
    right: 0;
    width: 380px;
    max-height: 500px;
    background: rgba(26,26,26,0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(211,173,127,0.3);
    border-radius: 15px;
    padding: 0;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    overflow: hidden;
}

.cart-dropdown.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(211,173,127,0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    color: #fff;
    font-size: 1.6rem;
    margin: 0;
}

.cart-total {
    color: var(--main-color);
    font-weight: bold;
    font-size: 1.4rem;
}

.cart-items-container {
    max-height: 300px;
    overflow-y: auto;
    padding: 1rem;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(211,173,127,0.2);
}

.checkout-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(45deg, var(--main-color), #f4d03f);
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    display: block;
    transition: transform 0.3s ease;
}

.checkout-btn:hover {
    transform: translateY(-2px);
}

/* User Container */
.user-container {
    position: relative;
}

.user-btn {
    width: 4.5rem;
    height: 4.5rem;
    background: rgba(211,173,127,0.2);
    border: 2px solid rgba(211,173,127,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-btn:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    transform: scale(1.1);
}

.user-btn:hover i {
    color: #000;
}

.user-btn i {
    color: var(--main-color);
    font-size: 1.8rem;
    transition: color 0.3s ease;
}

.user-dropdown {
    position: absolute;
    top: 120%;
    right: 0;
    width: 280px;
    background: rgba(26,26,26,0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(211,173,127,0.3);
    border-radius: 15px;
    padding: 0;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    overflow: hidden;
}

.user-dropdown.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.user-info {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(211,173,127,0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-info i {
    color: var(--main-color);
    font-size: 2rem;
}

.user-info span {
    color: #fff;
    font-size: 1.4rem;
}

.user-menu {
    list-style: none;
    margin: 0;
    padding: 1rem 0;
}

.user-menu li a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.user-menu li a:hover {
    background: rgba(211,173,127,0.1);
    color: var(--main-color);
}

.user-menu li a i {
    font-size: 1.6rem;
    width: 2rem;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 0.4rem;
    cursor: pointer;
    padding: 1rem;
}

.menu-line {
    width: 2.5rem;
    height: 0.3rem;
    background: var(--main-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(1,1,3,0.98);
    backdrop-filter: blur(10px);
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-nav-overlay.active {
    transform: translateX(0);
}

.mobile-nav-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(211,173,127,0.2);
}

.mobile-nav-header img {
    height: 4rem;
}

.mobile-nav-header h2 {
    color: var(--main-color);
    font-size: 2rem;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu li a {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
    color: #fff;
    text-decoration: none;
    font-size: 1.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: color 0.3s ease;
}

.mobile-nav-menu li a:hover {
    color: var(--main-color);
}

.mobile-nav-menu li.divider {
    height: 1px;
    background: rgba(211,173,127,0.3);
    margin: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 1rem 5%;
    }

    .navbar,
    .search-container,
    .cart-container,
    .user-container {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .logo-text {
        display: none;
    }

    .logo img {
        height: 4rem;
    }
}/* Contact Section Styling */
.contact {
    padding: 10rem 7% 5rem;
    background: var(--bg);
    min-height: 100vh;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header .heading {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 1rem;
}

.section-header .heading span {
    color: var(--main-color);
}

.subheading {
    font-size: 1.8rem;
    color: #ccc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-bottom: 5rem;
}

/* Contact Form */
.contact-form {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.contact-form h3 {
    font-size: 2.5rem;
    color: var(--main-color);
    margin-bottom: 2rem;
}

.form .input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form input,
.form textarea {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.6rem;
    background: #333;
    border: 1px solid #555;
    border-radius: 5px;
    color: #fff;
    transition: border-color 0.3s;
}

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

.form textarea {
    resize: vertical;
    margin-bottom: 2rem;
}

.form .btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.8rem;
    background: var(--main-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.form .btn:hover {
    background: #b8956a;
    letter-spacing: 0.1rem;
}

/* Contact Info */
.contact-info {
    padding: 2rem;
}

.contact-info h3 {
    font-size: 2.5rem;
    color: var(--main-color);
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: #1a1a1a;
    border-radius: 8px;
    transition: transform 0.3s;
}

.info-item:hover {
    transform: translateY(-2px);
}

.info-item i {
    font-size: 2.2rem;
    color: var(--main-color);
    margin-right: 1.5rem;
    margin-top: 0.5rem;
}

.info-item h4 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.info-item p {
    font-size: 1.5rem;
    color: #ccc;
    line-height: 1.6;
}

.hours p {
    margin-bottom: 0.5rem;
}

/* Map Container */
.map-container {
    text-align: center;
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.map-container h3 {
    font-size: 2.5rem;
    color: var(--main-color);
    margin-bottom: 2rem;
}

.map-container iframe {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.footer {
    background: var(--black);
    text-align: center;
    padding: 3rem 1rem;
}

.footer .share {
    padding: 1rem 0;
}

.footer .share a {
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    font-size: 2rem;
    color: #fff;
    border: var(--border);
    margin: .3rem;
    border-radius: 50%;
}

.footer .share a:hover {
    background-color: var(--main-color);
}

.footer .credit {
    font-size: 2rem;
    color: #fff;
    font-weight: lighter;
    padding: 1.5rem;
}

.footer .credit span {
    color: var(--main-color);
}

/* Responsive Design */
@media (max-width: 991px) {
    html {
        font-size: 55%;
    }
    
    .header {
        padding: 1.5rem 2rem;
    }
    
    section {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form .input-group {
        grid-template-columns: 1fr;
    }
    
    .section-header .heading {
        font-size: 3rem;
    }
    
    .contact-form,
    .map-container {
        padding: 2rem;
    }
    
    #menu-btn {
        display: inline-block;
    }
    
    .header .navbar {
        position: absolute;
        top: 100%;
        right: -100%;
        background: #fff;
        width: 30rem;
        height: calc(100vh - 9.5rem);
    }
    
    .header .navbar.active {
        right: 0;
    }
    
    .header .navbar a {
        color: var(--black);
        display: block;
        margin: 1.5rem;
        padding: .5rem;
        font-size: 2rem;
    }
    
    .header .search-form {
        width: 90%;
        right: 2rem;
    }
}

@media (max-width: 450px) {
    html {
        font-size: 50%;
    }
    
    .section-header .heading {
        font-size: 2.5rem;
    }
}
