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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #c0392b;
    --accent-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ffffff;
    --bg-soft: #f8f9fa;
    --border-color: #ecf0f1;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 8px 30px rgba(0, 0, 0, 0.12);
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

/* Hero Section - Improved Header */
.hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
    position: relative;
}

.logo-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.logo {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.brand-name {
    font-size: 3rem;
    font-weight: 300;
    color: var(--primary-color);
    letter-spacing: 3px;
    margin: 0;
    text-transform: lowercase;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 50px;
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

/* Modern Image Containers */
.hero-image-container,
.concept-image-container,
.tradition-image-container,
.atmosphere-image-container,
.product-image-container {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    position: relative;
    background: var(--bg-soft);
}

.product-image-container {
    max-width: 100%;
    height: 250px;
    margin-bottom: 20px;
}

.hero-img,
.concept-img,
.tradition-img,
.atmosphere-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

/* Hover effects for images */
.hero-image-container:hover .hero-img,
.concept-image-container:hover .concept-img,
.tradition-image-container:hover .tradition-img,
.atmosphere-image-container:hover .atmosphere-img,
.product-image-container:hover .product-img {
    transform: scale(1.05);
}

/* Section Styling */
section {
    padding: 80px 0;
}

section:nth-child(even) {
    background-color: var(--bg-soft);
}

h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
    font-weight: 300;
    letter-spacing: 1px;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Icons */
.concept-icon,
.tradition-icon,
.modern-icon,
.products-icon,
.atmosphere-icon,
.location-icon,
.contact-icon {
    text-align: center;
    margin-bottom: 30px;
}

.concept-icon img,
.tradition-icon img,
.modern-icon img,
.products-icon img,
.atmosphere-icon img,
.location-icon img,
.contact-icon img {
    width: 60px;
    height: 60px;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.payment-methods img {
    width: 50px;
    height: 50px;
}

/* Products Section */
.products {
    padding: 100px 0;
}

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

.product-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 0;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.product-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 25px 0 18px;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 0 25px;
}

.product-card p {
    font-size: 1rem;
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.6;
    padding: 0 25px;
}

.product-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 30px;
    letter-spacing: 1px;
    padding: 0 25px;
}

.cta-button {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    letter-spacing: 0.5px;
    font-weight: 500;
    margin: 0 25px 25px;
}

.cta-button:hover {
    background-color: #a93226;
    transform: translateY(-2px);
}

.cta-button:active {
    transform: translateY(0);
}

/* Location Details */
.location-details {
    text-align: center;
    margin-top: 50px;
}

.address {
    font-size: 1.3rem;
    color: var(--text-dark);
    line-height: 1.8;
    font-weight: 400;
}

/* Contact Section */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 500px;
    margin: 50px auto 0;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 1.2rem;
    padding: 15px;
    border-radius: 12px;
    background: rgba(44, 62, 80, 0.05);
    transition: background-color 0.3s ease;
}

.contact-item:hover {
    background: rgba(44, 62, 80, 0.08);
}

.contact-item img {
    width: 28px;
    height: 28px;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--secondary-color);
}

.contact-item span {
    color: var(--text-dark);
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo-img {
    width: 45px;
    height: 45px;
}

.footer-brand {
    font-size: 1.8rem;
    letter-spacing: 2px;
    font-weight: 300;
    text-transform: lowercase;
}

.footer-text p {
    color: #bdc3c7;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.copyright {
    font-size: 1rem !important;
    color: #95a5a6 !important;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin-top: 20px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 5px 10px;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    
    .hero-img,
    .concept-img,
    .tradition-img,
    .atmosphere-img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
    }
    
    .logo-brand {
        flex-direction: column;
        gap: 15px;
    }
    
    .brand-name {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .logo {
        width: 60px;
        height: 60px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .payment-methods {
        gap: 25px;
    }
    
    .contact-info {
        gap: 20px;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-img,
    .concept-img,
    .tradition-img,
    .atmosphere-img {
        height: 300px;
    }
    
    .product-image-container {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        padding: 60px 0 50px;
    }
    
    .brand-name {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .logo {
        width: 50px;
        height: 50px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .product-card {
        border-radius: 16px;
    }
    
    .payment-methods {
        gap: 20px;
    }
    
    .payment-methods img {
        width: 40px;
        height: 40px;
    }
    
    .contact-item {
        font-size: 1rem;
        padding: 12px;
    }
    
    .address {
        font-size: 1.1rem;
    }
    
    .footer-brand {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .hero-img,
    .concept-img,
    .tradition-img,
    .atmosphere-img {
        height: 250px;
    }
    
    .product-image-container {
        height: 200px;
    }
    
    .footer-links {
        gap: 15px;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 15px;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .hero-img,
    .concept-img,
    .tradition-img,
    .atmosphere-img {
        height: 220px;
    }
    
    .product-image-container {
        height: 180px;
    }
}