@import url('https://fonts.googleapis.com/css2?family=Anton&family=Pacifico&family=Righteous&display=swap');

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

html {
    scroll-behavior: smooth;
}

:root {
    --black: #000000;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-dark: #333333;
    --gray-medium: #757575;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    background-color: var(--white);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--black);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gray-medium);
}

/* Hero Section */
.hero-main {
    margin-top: 60px;
    background-color: var(--white);
}

.hero-text-section {
    background-color: var(--black);
    color: var(--white);
    text-align: center;
    padding: 80px 40px;
}

.hero-title {
    font-family: 'Righteous', cursive;
    font-size: 5rem;
    font-weight: normal;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: 'Pacifico', cursive;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    font-weight: normal;
    color: var(--white);
}

.btn-hero {
    display: inline-block;
    background-color: var(--white);
    color: var(--black);
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-hero:hover {
    background-color: var(--gray-light);
    transform: scale(1.05);
}

.hero-image-section {
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Showcase Section */
.showcase-section {
    padding: 60px 0;
    background-color: var(--gray-light);
}

.showcase-title {
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.showcase-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.showcase-item.large {
    grid-column: span 2;
    height: 600px;
}

.showcase-item:not(.large) {
    height: 500px;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    padding: 20px;
}

.showcase-item:hover img {
    transform: scale(1.05);
}

/* Shop Section */
.shop-section {
    background-color: var(--gray-light);
    padding: 60px 0;
}

.section-title {
    text-align: left;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 3rem;
}

.product-card {
    background-color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.product-card img {
    width: 100%;
    height: 450px;
    object-fit: contain;
    padding: 20px;
    background-color: var(--white);
}

.product-info {
    padding: 1.5rem;
    background-color: var(--white);
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--black);
}

.product-info p {
    color: var(--gray-medium);
    font-size: 1rem;
}

/* About Section */
.about-section {
    background-color: var(--gray-light);
    padding: 80px 40px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray-dark);
}

/* Contact Section */
.contact-section {
    background-color: var(--white);
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info h3,
.social-links h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-info p {
    margin: 1rem 0;
    font-size: 1.1rem;
}

.social-btn {
    display: block;
    background-color: var(--black);
    color: var(--white);
    padding: 0.8rem 2rem;
    text-decoration: none;
    margin: 1rem 0;
    text-align: center;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: var(--gray-dark);
}

/* Footer */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 3rem 0;
}

.footer-content {
    text-align: center;
}

.location-text {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.expansion-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--gray-medium);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container,
    .nav-container {
        padding: 0 30px;
    }
    
    .showcase-grid {
        padding: 0 30px;
    }
}

@media (max-width: 1024px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .showcase-item.large {
        grid-column: span 1;
        height: 500px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
    
    .about-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .container,
    .nav-container {
        padding: 0 20px;
    }
    
    .hero-text-section {
        padding: 60px 20px;
    }
    
    .hero-title {
        font-size: 3rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .btn-hero {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
    
    .hero-image-section {
        height: 50vh;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .showcase-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .showcase-section {
        padding: 40px 0;
    }
    
    .showcase-grid {
        gap: 15px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-card img {
        height: 350px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .shop-section {
        padding: 40px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info h3,
    .social-links h3 {
        font-size: 1.3rem;
    }
    
    .contact-info p {
        font-size: 1rem;
    }
    
    .showcase-item:not(.large) {
        height: 400px;
    }
    
    .about-section {
        padding: 60px 20px;
    }
    
    .about-content h2 {
        font-size: 1.8rem;
    }
    
    .about-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container,
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
        letter-spacing: 0.5px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-hero {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
    
    .hero-text-section {
        padding: 40px 15px;
    }
    
    .hero-image-section {
        height: 35vh;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .nav-links {
        gap: 0.6rem;
        font-size: 0.8rem;
    }
    
    .navbar {
        padding: 0.8rem 0;
    }
    
    .showcase-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .showcase-section {
        padding: 30px 0;
    }
    
    .showcase-grid {
        padding: 0 15px;
        gap: 12px;
    }
    
    .showcase-item.large {
        height: 350px;
    }
    
    .showcase-item:not(.large) {
        height: 300px;
    }
    
    .showcase-item img {
        padding: 15px;
    }
    
    .product-card img {
        height: 280px;
        padding: 15px;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .product-info h3 {
        font-size: 1.1rem;
    }
    
    .product-info p {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .shop-section {
        padding: 30px 0;
    }
    
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-info h3,
    .social-links h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .contact-info p {
        font-size: 0.95rem;
        margin: 0.8rem 0;
    }
    
    .social-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .about-section {
        padding: 40px 15px;
    }
    
    .about-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .about-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .footer {
        padding: 2rem 0;
    }
    
    .location-text {
        font-size: 1rem;
    }
    
    .expansion-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .nav-links {
        gap: 0.5rem;
        font-size: 0.75rem;
    }
    
    .showcase-title {
        font-size: 1.7rem;
    }
    
    .btn-hero {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }
}
