/* LUXOR Brand Colors: 
   Sand/Linen: #F8F4E1
   Deep Lapis: #191970
   Rich Gold: #D4AF37
   Dark Text: #333333
*/

/* --- Global & Typography --- */
body {
    font-family: 'Montserrat', sans-serif; 
    background-color: #F8F4E1; /* Soft, linen-like sand background */
    color: #333333; 
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #F8F4E1; /* Default to light color for Hero section contrast */
}

/* --- Navigation Logo (file (1).png) --- */
.logo {
    text-indent: -9999px; 
    overflow: hidden; 
    width: 300px; 
    height: 100px; 
    margin: 0;
    /* THIS IS THE LOGO CHANGE: file (1).png for the header navigation */
    background-image: url('../file (1).png'); 
    background-size: contain; 
    background-repeat: no-repeat;
    background-position: left center;
}

/* --- Header & Navigation --- */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 80px; 
    background-color: #fff; /* Clear white background for the navigation */
    border-bottom: 2px solid #D4AF37; 
}

.main-nav a {
    color: #333333;
    text-decoration: none;
    margin-left: 30px; 
    text-transform: uppercase;
    font-size: 0.9em;
    font-weight: 400;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #D4AF37; 
}

/* --- Hero Section (Background is logo-01.jpg) --- */
.hero {
    text-align: center;
    padding: 120px 50px; 
    
    /* BACKGROUND IMAGE STYLES: Using logo-01.jpg for the full background */
    background-image: url('../logo-01.jpg'); 
    background-size: cover; 
    background-position: center center;
    background-attachment: fixed; 
    
    /* Optional dark overlay for text readability */
    background-blend-mode: darken;
    background-color: rgba(0, 0, 0, 0.4); 
    
    position: relative;
    z-index: 1; 
    color: #F8F4E1; 
}

.hero-text-bg {
    display: inline-block;
    background: rgba(0, 0, 0, 0.65);        /* Elegant black, 65% opacity */
    padding: 30px 40px;
    border-radius: 12px;
    margin-bottom: 38px;
    box-shadow: 0 2px 18px rgba(0,0,0,0.14);
}

.hero-text-bg h2 {
    font-family: 'Montserrat', sans-serif;      /* Uses the modern sans serif */
    font-size: 4.8em;                           /* Bigger than before! */
    font-weight: 900;                           /* Bold and impactful */
    letter-spacing: 2px;                        /* Slight spacing for elegance */
    color: #F8F4E1;                             /* Light sand, for readability */
    margin-bottom: 18px;
}

.hero-text-bg p {
    font-size: 1.26em;
    font-weight: 400;
    margin-bottom: 0;
}

.shop-button {
    display: inline-block;
    background-color: #D4AF37; 
    color: white;
    text-decoration: none;
    padding: 15px 40px;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: background-color 0.3s;
}

.shop-button:hover {
    background-color: #A98E3A;
}

/* --- Teaser Section --- */
.about-us-teaser {
    padding: 80px 50px;
    text-align: center;
    background-color: #fff; 
}

.about-us-teaser h3 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #191970; 
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 30px;
    background-color: #191970; 
    color: #F8F4E1;
    font-size: 0.8em;
}

/* * IMPORTANT: Add your Product Page (nile-tunic.html) CSS below this line 
 * to ensure you don't lose the product page styling. 
*/

/* --- PRODUCT PAGE: NILE TUNIC STYLES --- */

.product-details {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 2.5rem;
    padding: 60px 80px;
    background-color: #fff;
    border-radius: 18px;
    margin: 40px auto;
    max-width: 1050px;
    box-shadow: 0 2px 32px rgba(0,0,0,0.10);
}

.product-image {
    width: 100%;
    max-width: 200px;   /* Make this smaller, e.g. 180-240px might be good */
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.09);
    object-fit: contain;
    background: #fff;
    margin-right: 20px;  /* add spacing between image and text */
}

.product-image {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.09);
    object-fit: contain;
    background: #fff;
}

/* --- Pre-Order Button Style for Product Page --- */
.pre-order-button {
    display: block; /* Make it take up full width for prominence */
    width: 100%;
    text-align: center;
    background-color: #D4AF37; /* Rich Gold */
    color: white;
    text-decoration: none;
    padding: 15px 0; /* Padding top/bottom, zero left/right */
    margin-top: 20px;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: background-color 0.3s;
}

.pre-order-button:hover {
    background-color: #A98E3A; /* Darker Gold on hover */
}

/* --- Responsive adjustments for product section --- */
@media (max-width: 820px) {
    .product-details {
        flex-direction: column;
        padding: 30px 10px;
        max-width: 98vw;
    }
    .product-image-container {
        max-width: 90vw;
        margin-bottom: 30px;
        padding: 5px;
    }
}
/* --- ABOUT PAGE SPECIFIC STYLES --- */

.about-hero {
    background-color: #191970; /* Deep Lapis Blue background */
    color: #F8F4E1; /* Sand text */
    text-align: center;
    padding: 100px 50px;
}

.about-title {
    font-size: 3.5em;
    font-weight: 400;
    margin-bottom: 10px;
    color: #F8F4E1; /* Override the default h2 color if necessary */
}

.about-subtitle {
    font-size: 1.1em;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
}

/* --- Story Container Layout --- */
.story-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.story-block {
    flex: 1 1 45%; /* Blocks take up roughly half the container width */
    padding: 30px;
    box-sizing: border-box;
}

.story-block h3 {
    font-size: 2em;
    color: #191970; /* Deep Lapis Blue for subheadings */
    margin-bottom: 15px;
}

.story-block p {
    font-size: 1em;
    line-height: 1.7;
}

/* Styling for the image placeholders */
.story-block-image {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-visual {
    width: 100%;
    height: 350px;
    background-color: #D4AF37; /* Gold placeholder color */
    /* You can replace this with an image later */
    /* background-image: url('../path/to/about-image-1.jpg'); */
    background-size: cover;
    background-position: center;
    border: 5px solid #191970;
}

/* Styling for the full-width section (Section III) */
.full-width-block {
    flex: 1 1 100%; /* Takes up full width */
    text-align: center;
    background-color: #fff;
    padding: 60px;
    margin-top: 40px;
    border-top: 2px solid #D4AF37;
}

.full-width-block h3 {
    font-size: 2.5em;
}
