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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #fff;
}

/* Header */
header {
    background: #fff;
    padding: 0.75rem 5%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo img {
    height: 160px;
    width: auto;
}

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

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #8b7355;
}

.language-toggle {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.language-toggle button {
    background: none;
    border: 1px solid #2c2c2c;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: all 0.3s;
    color: #2c2c2c;
}

.language-toggle button:hover,
.language-toggle button.active {
    background: #2c2c2c;
    color: white;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2c2c2c;
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);

}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
    z-index: 999;
}

.mobile-nav.active {
    display: block;
}

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

.mobile-nav li {
    border-bottom: 1px solid #e0e0e0;
}

.mobile-nav a {
    display: block;
    padding: 1rem 5%;
    color: #2c2c2c;
    text-decoration: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.mobile-nav .lang-it {
    display: block;
}

.mobile-nav .lang-en {
    display: none;
}

body.lang-en .mobile-nav .lang-it {
    display: none;
}

body.lang-en .mobile-nav .lang-en {
    display: block;
}

.mobile-nav a:hover {
    background: #f5f5f5;
    color: #8b7355;
}

.mobile-language-toggle {
    display: flex;
    gap: 0.5rem;
    padding: 1rem 5%;
    border-top: 1px solid #e0e0e0;
}

.mobile-language-toggle button {
    background: none;
    border: 1px solid #2c2c2c;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: all 0.3s;
    color: #2c2c2c;
}

.mobile-language-toggle button:hover,
.mobile-language-toggle button.active {
    background: #2c2c2c;
    color: white;
}

/* Language visibility - only for elements with lang classes */
span.lang-it,
p.lang-it,
a.lang-it,
td.lang-it,
tr.lang-it,
h1 .lang-it,
h2 .lang-it,
h3 .lang-it {
    display: block;
}

span.lang-en,
p.lang-en,
a.lang-en,
td.lang-en,
tr.lang-en,
h1 .lang-en,
h2 .lang-en,
h3 .lang-en {
    display: none;
}

body.lang-en span.lang-it,
body.lang-en p.lang-it,
body.lang-en a.lang-it,
body.lang-en td.lang-it,
body.lang-en tr.lang-it,
body.lang-en h1 .lang-it,
body.lang-en h2 .lang-it,
body.lang-en h3 .lang-it {
    display: none;
}

body.lang-en span.lang-en,
body.lang-en p.lang-en,
body.lang-en a.lang-en,
body.lang-en td.lang-en,
body.lang-en tr.lang-en,
body.lang-en h1 .lang-en,
body.lang-en h2 .lang-en,
body.lang-en h3 .lang-en {
    display: block;
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('ReeceLondon.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 0.3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.3rem;
    letter-spacing: 0.1rem;
}

/* Sections */
section {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Gallery/Shop Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/4;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.map-container {
    margin-top: 2rem;
    width: 100%;
    height: 400px;
    border: 1px solid #e0e0e0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #555;
}

.contact-info a {
    color: #8b7355;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.5rem;
}

.hours-table td {
    padding: 0.5rem 0;
    border: none;
    font-size: 1rem;
    color: #555;
}

.hours-table td:first-child {
    padding-right: 1.5rem;
    font-weight: 500;
}

/* Footer */
footer {
    background: #2c2c2c;
    color: white;
    padding: 3rem 5%;
    text-align: center;
}

footer p {
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 0.1rem 5%;
    }
    
    .nav-links {
        display: none;
    }
    
    .language-toggle {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    nav {
        position: relative;
    }
    
    .logo img {
        height: 140px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

