/* Reset and basics */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    text-align: center;
    padding: 0;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #222;
}

h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

h2 {
    font-size: 1.8em;
}

h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

/* Navbar */
.navbar {
    background-color: rgb(54, 53, 53);
    padding: 15px 0;
    display: flex;
    justify-content: center;
    gap: 160px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar a {
    font-family:'Playfair Display', serif;
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
    transition: background-color 0.3s ease, color 0.3s ease;
    padding: 10px 20px;
    border: 2px solid white;         /* ← Adds white border */
    border-radius: 8px;              /* ← Rounds the corners */
    margin: 0 10px;
}

.navbar a:hover {
    background-color: white;         /* ← On hover, fill white */
    color: #000;                     /* ← On hover, text turns black */
}

.navbar a:hover {
    color: rgb(61, 61, 61);
}

.cart-link span {
    font-weight: bold;
    color: #ff6600;
}

/* Hero Banner */
.hero {
    background-image: url("../photos/banner.jpg");
    background-size: cover;
    background-position: center;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.8);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Subtle shadow separator */
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4em;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: white;
    margin-bottom: 40px

}



/* Homepage images section */
.images {
    display: flex;
    justify-content: center;
    gap: 1000px;
    margin-top: 40px;
    flex-wrap: wrap;
  }
  
  .images img {
    width: 300px;               /* fixed width */
    height: 300px;              /* fixed height */
    object-fit: cover;          /* crops image to fit box */
    border-radius: 10px;        /* optional rounding */
    display: block;
    margin: 10px;
  }
  @media (max-width: 768px) {
    .images {
      flex-direction: column;
      align-items: center;
    }
  
    .images img {
      width: 90%;
      height: auto;              /* switch back to auto-height on small screens */
      object-fit: contain;       /* prevents mobile cropping */
    }
  }
  
  

.images img:hover {
    transform: scale(1.1);
}

/* Shop Page Product Grid */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 40px;
    padding: 40px;
}

.product {
    background-color: rgb(207, 204, 204);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.product img {
    width: 300px;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.product h2 a {
    text-decoration: none;
    color: #222;
}

.product h2 a:hover {
    color: #666;
}

.product p {
    font-size: 1em;
    margin-bottom: 10px;
}

/* Product Detail Page */
.product-detail {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 40px;
    text-align: left;
}

.product-images {
    flex: 1 1 400px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.product-images img {
    width: 600px;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.product-info {
    flex: 1 1 300px;
    max-width: 500px;
}

.product-info p {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #444;
}

.product-info h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.product-info button {
    padding: 12px 24px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.product-info button:hover {
    background-color: #555;
}

/* Gallery Page */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 40px;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    margin-top: 60px;
    color: #aaa;
    font-size: 0.9em;
    padding: 20px;
}.section-divider {
    border: none;
    height: 2px;
    background-color: #ddd;
    margin: 0 80px;
}
.social-media {
    margin: 60px 0;
    text-align: center;
}

.social-media h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 200px;
}

.social-icons a {
    color: #555;
    font-size: 2.5em;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;   /* ← Add this */
    padding: 10px;           /* ← Add this */
}


.social-icons a:hover {
    color: #000;
    transform: scale(1.2);
}

.shop-wrapper{
    background: url("../photos/IMG_1429.jpg") center/cover no-repeat fixed;
    padding: 60px 0;          /* top & bottom breathing room */
}

/* Rounded‑edge “card” style */
.boxed{
    background: rgba(255,255,255,0.8);   /* soft white veil; adjust color/alpha */
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: inline-block;               /* shrink to fit text width */
}

/* Optional tweaks per element */
.product-title.boxed{
    font-size: 2em;
    margin-bottom: 20px;
}

.product-desc.boxed{
    font-size: 1.05em;
    color: #444;
    margin-bottom: 30px;
}
/* price inside the product grid (shop page) */
/* price inside the shop grid */
.shop-grid .price{
    display: inline-block;                /* shrink‑wrap box */
    background: rgba(255,255,255,0.9);    /* soft white pill */
    padding: 6px 16px;
    border-radius: 18px;
    font-size: 1.7em;
    font-weight: 600;
    color: #222;
    margin: 10px 0;                      /* space above & below */
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* price on an individual product page */
.product-info .price{
    font-size: 2.2em;   /* big hero price */
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}
/* --- Purchase box on product page --------------------------- */
/* ─────────────────  PURCHASE (price + button) CARD  ───────────────── */
/* ───── PURCHASE CARD: price left • button right ───── */
.purchase-box{
    background: rgba(255,255,255,0.95);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    padding: 22px 28px;

    /* NEW layout */
    display: flex;                 /* row by default */
    align-items: center;           /* vertical center */
    justify-content: space-between;
    gap: 20px;                     /* space between price & button */

    max-width: 500px;
    margin: 30px auto 0;
}

/* price inside the card */
.purchase-box .price{
    font-size: 2.2em;
    font-weight: 700;
    margin: 0;                     /* no bottom margin now */
    color:#222;
}

/* widen the button a bit */
.purchase-box button{
    padding: 12px 32px;
    font-size: 1.05em;
}


}
/* --- dimensions / specs card ----------------------------- */
.details-box{
    background: rgba(255,255,255,0.95);
    padding: 20px 28px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    display: inline-block;
    text-align: left;         /* lists look nicer left‑aligned */
    margin: 18px 0 22px;      /* space above & below */
    font-size: 0.95em;
}

.details-box h4{
    font-family:'Playfair Display',serif;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.details-box ul{
    margin-left: 18px;        /* indent bullets slightly */
}

.details-box li{
    margin-bottom: 4px;
}
/* ─────────  MOBILE / TABLET TWEAKS  ───────── */
/* ─── stack + padding when window narrower than 1200 px ─── */
@media (max-width: 1200px){

    .product-detail{
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .product-images{
        margin-bottom: 10px;
    }

    .product-info{
        padding: 0 20px;   /* side breathing‑room */
    }
}
@media (max-width: 500px){
    .purchase-box{
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
}

.about {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Playfair Display', serif;
  }
  
  .about h1 {
    text-align: center;
    font-size: 2.8em;
    margin-bottom: 40px;
  }
  
  .about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    justify-content: center;
  }
  
  .about-text {
    flex: 1 1 500px;
    font-size: 1.1em;
    line-height: 1.6;
  }
  
  .about-photo img {
    max-width: 300px;
    border-radius: 10px;
    display: block;
    border: 10px solid #000;         /* black border */
    padding: 0px;                   /* optional inner padding */
    margin-left: 20px;              /* adds space between image and text */
  }
  
  