:root {
    --primary-color: #2c2c2c;
    --secondary-color: #d9a75f;
    --background-color: #f9f9f9;
    --text-color: #333;
    --light-gray: #e5e5e5;
    --dark-gray: #555;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

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

/* Header Styles */
header {
    background-color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 180px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--secondary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--dark-gray);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 80vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background-image: url('images/IMG_2797_2.JPG');
    background-size: 104% auto;
    background-position: center calc(50% + 150px);
    background-repeat: no-repeat;
    z-index: -1;
    filter: brightness(0.5);
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #c08c3f;
}

/* About Section */
.about {
    padding: 100px 0;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 40px;
}

/* Products Section */
.products {
    padding: 100px 0;
    background-color: white;
}

.products-title {
    text-align: center;
    margin-bottom: 60px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background-color: var(--background-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 20px;
}

.product-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.product-info p {
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Specs Section */
.specs-section {
    padding: 100px 0;
    background-color: #f5f5f5;
}

.specs-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    color: var(--dark-gray);
}

.specs-container {
    margin-bottom: 60px;
}

.specs-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
    position: relative;
}

.specs-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.spec-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.spec-header {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spec-icon {
    display: none;
}

.spec-header h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.spec-content {
    padding: 20px;
}

.spec-content p {
    margin-bottom: 10px;
}

.spec-content p:last-child {
    margin-bottom: 0;
}

.spec-note {
    font-style: italic;
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-top: 10px;
    padding-left: 10px;
    border-left: 3px solid var(--secondary-color);
}

.spec-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.option {
    background-color: #f0f0f0;
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.3s;
}

.option:hover {
    background-color: var(--secondary-color);
    color: white;
}

.spec-sublist {
    list-style: none;
    margin-left: 15px;
    margin-top: 5px;
}

.spec-sublist li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
}

.spec-sublist li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.contact-title {
    color: white;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    margin-top: 40px;
}

.contact-email {
    font-size: 1.5rem;
    margin: 20px 0;
}

.contact-email a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-email a:hover {
    color: #c08c3f;
}

.social-links {
    margin-top: 40px;
}

.social-links a {
    display: inline-block;
    margin: 0 10px;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: scale(1.1);
}

.social-links img {
    width: 40px;
    height: 40px;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background-color: var(--background-color);
    text-align: center;
}

.gallery-content {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 40px;
}

.gallery-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Keep instagram-gallery class for backward compatibility but add photo-gallery as well */
.instagram-gallery, .photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

/* Keep instagram-photo class for backward compatibility but add photo-item as well */
.instagram-photo, .photo-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    aspect-ratio: 1 / 1;
}

.instagram-photo:hover, .photo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.instagram-photo img, .photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instagram-photo .overlay, .photo-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.instagram-photo:hover .overlay, .photo-item:hover .overlay {
    opacity: 1;
}

.instagram-photo .overlay a, .photo-item .overlay a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.instagram-photo .overlay a:hover, .photo-item .overlay a:hover {
    background-color: white;
    color: var(--primary-color);
}

.loading-message {
    padding: 40px;
    font-size: 1.2rem;
    color: var(--dark-gray);
}

.gallery-cta {
    margin-top: 30px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox.active {
    display: block;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.close-lightbox {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-lightbox:hover,
.close-lightbox:focus {
    color: var(--secondary-color);
    text-decoration: none;
    cursor: pointer;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 30px 0;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 745px) {
    .hero::before {
        background-position: initial;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        width: 100%;
        margin-top: 20px;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        padding: 0 10px;
    }

    .section-title {
        font-size: 2rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Active state for mobile menu */
nav.active {
    display: block;
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    nav.active {
        display: block;
    }
}

/* Small screen adjustments for hero section */
@media (max-width: 435px) {
    .hero {
        align-items: flex-start;
        padding-top: 15vh;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 15px;
        margin-bottom: 20px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
