/* CSS Reset & Global Variables */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #111111;
    --secondary-color: #555555;
    --bg-color: #fafafa;
    --border-color: #eaeaea;
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-heading: 'Georgia', serif;
}

body { 
    font-family: var(--font-main); 
    color: var(--primary-color); 
    background-color: var(--bg-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- Navigation Bar --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand img {
    height: 50px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: #888;
}

/* --- Hero Section (Home Page) --- */
.hero-section { 
    display: flex; 
    flex: 1;
    background-color: #fff;
}

.content-left { 
    flex: 1; 
    padding: 8% 5%; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
}

.subtitle { 
    font-size: 12px; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    margin-bottom: 15px; 
    font-weight: 600;
    color: var(--secondary-color); 
}

.title { 
    font-size: 48px; 
    font-weight: 400; 
    margin-bottom: 25px; 
    font-family: var(--font-heading); 
    line-height: 1.1;
}

.description { 
    font-size: 17px; 
    color: #444; 
    margin-bottom: 35px; 
    max-width: 550px;
}

/* Buttons */
.action-buttons { 
    display: flex; 
    gap: 15px; 
    flex-wrap: wrap; 
    margin-bottom: 40px;
}

.btn { 
    display: inline-block; 
    padding: 15px 30px; 
    font-size: 13px; 
    font-weight: bold; 
    letter-spacing: 1.5px; 
    text-transform: uppercase; 
    text-decoration: none; 
    transition: all 0.3s ease; 
    border: 2px solid var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.btn-secondary {
    background-color: #fff;
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: #f0f0f0;
}

/* Store Details (Home Page specific) */
.store-details { 
    margin-top: 10px; 
    font-size: 14px; 
    line-height: 1.8; 
    border-top: 1px solid var(--border-color); 
    padding-top: 25px; 
    color: #555;
    max-width: 550px;
}
.store-details strong {
    color: var(--primary-color);
}

.image-right { 
    flex: 1; 
    background: url('https://images.unsplash.com/photo-1490481651871-ab68de25d43d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80') no-repeat center center; 
    background-size: cover; 
}

/* --- Brand Pages Header --- */
.page-header {
    text-align: center;
    padding: 60px 20px;
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 10px;
}

.motto {
    color: var(--secondary-color);
    font-size: 16px;
    font-style: italic;
    letter-spacing: 0.5px;
}

/* --- Infinite Scrolling Logo Marquee --- */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background: #fff;
    padding: 60px 0;
    white-space: nowrap;
    position: relative;
}

.marquee-container::before,
.marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.marquee-container::before { left: 0; background: linear-gradient(to right, white, transparent); }
.marquee-container::after { right: 0; background: linear-gradient(to left, white, transparent); }

.marquee-content {
    display: inline-block;
    animation: scroll 60s linear infinite; 
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

.marquee-content img {
    height: 80px;
    width: 180px;
    object-fit: contain;
    margin: 0 40px;
    vertical-align: middle;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.marquee-content img:hover {
    transform: scale(1.1); 
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Ethnic Page Editorial Gallery --- */
.motto-exquisite {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--primary-color);
    font-style: italic;
    letter-spacing: 1.5px;
    margin-top: 15px;
    position: relative;
    display: inline-block;
}

.motto-exquisite::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

.editorial-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 5%;
}

.editorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 300px;
    gap: 25px;
}

.editorial-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    background-color: #eee; /* Placeholder background color while images load */
}

.editorial-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.editorial-item:hover img {
    transform: scale(1.04);
}

/* Magazine asymmetrical sizing for larger screens */
@media (min-width: 768px) {
    .editorial-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .item-featured {
        grid-column: span 2;
        grid-row: span 2;
    }
    .item-portrait {
        grid-row: span 2;
    }
    .item-landscape {
        grid-column: span 2;
    }
}

/* --- Contact Page Styles --- */
.contact-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 5%;
    width: 100%;
}

.contact-info-block {
    text-align: center;
    margin-bottom: 50px;
    color: #555;
    line-height: 1.8;
}

.contact-info-block h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    border-color: var(--primary-color);
}

.contact-form textarea {
    min-height: 180px;
    resize: vertical;
}

.btn-submit {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 14px;
    font-family: var(--font-main);
    font-weight: bold;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #333;
}

/* --- Global Footer --- */
.global-footer {
    background-color: #fff;
    border-top: 1px solid var(--border-color);
    padding: 30px 5%;
    text-align: center;
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-top: auto;
}
.global-footer strong {
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-section { flex-direction: column; }
    .image-right { min-height: 500px; }
    .navbar { flex-direction: column; gap: 20px; }
}

@media (max-width: 768px) {
    .form-row { flex-direction: column; }
}