/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: 'Georgia', serif;
    background-color: #0d0d0d;
    color: #f5f5f5;
}
/* GENERAL PAGE STYLE */
.page {
    padding: 120px 50px;
    text-align: center;
}

.page h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.page p {
    max-width: 600px;
    margin: auto;
    line-height: 1.6;
}



/* NAVBAR */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
}

.navbar a {
    color: #f5f5f5;
    margin-left: 20px;
    text-decoration: none;
    transition: 0.3s;
}

.navbar a:hover {
    color: #c9a0a0;
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: url("images/heaven.jpg") no-repeat center top / cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

/* DARK OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.35),
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.7)
    );
    z-index: 1;
}

/* HERO TEXT */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 20px;
    color: #f5e9e2;
    animation: fadeUp 1.6s ease;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

.hero-btn {
    display: inline-block;
    padding: 14px 30px;
    background: rgba(244, 62, 62, 0.9);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
    background: rgba(200, 40, 40, 0.95);
}

/* SOFT MOTION */
.hero::before {
    content: "";
    position: absolute;
    inset: -3%;
    background: inherit;
    background-size: cover;
    background-position: center top;
    filter: blur(1px);
    transform: scale(1.03);
    animation: slowFloat 14s ease-in-out infinite alternate;
    z-index: 0;
}

/* ANIMATIONS */
@keyframes slowFloat {
    0% {
        transform: scale(1.03) translateY(0px);
    }
    100% {
        transform: scale(1.08) translateY(-10px);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .hero {
        min-height: 600px;
        background-position: center top;
    }

    .hero-content h1 {
        font-size: 2.7rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}




/* COLLECTIONS */
.collections {
    padding: 80px 50px;
    text-align: center;
}

.collection-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.card {
    background: #1a1a1a;
    padding: 40px;
    width: 200px;
    transition: 0.3s;
}

.card:hover {
    transform: scale(1.05);
}

/* PRODUCTS */
.products {
    padding: 60px 20px;
    text-align: center;
    background: #111;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    margin-top: 30px;
}
.product {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


/* IMAGE */
.product img {
    width: 100%;
    height: 180px;
    object-fit: contain;   /* keeps full image */
    background: #0d0d0d;   /* adds clean background */
    padding: 10px;
    border-radius: 10px;
}

/* TEXT */
.product p {
    margin-top: 10px;
    color: #f5e9e2;
    font-size: 0.95rem;
}

/* HOVER */
.product:hover {
    transform: translateY(-5px);
}



/* ABOUT */
.about {
    padding: 80px;
    text-align: center;
    font-style: italic;
}

/* NEWSLETTER */
.newsletter {
    padding: 80px;
    text-align: center;
}

.newsletter input {
    padding: 10px;
    width: 250px;
    margin-right: 10px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #000;
}

/* REVIEWS SECTION */


/* REVIEWS SECTION */
.reviews {
    padding: 60px 20px;
    text-align: center;
    background: #111;
}

.reviews h2 {
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: #f5e9e2;
}

/* GRID */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

/* CARD */
.review-card {
    background: #140909;
    border: 1px solid rgba(244, 62, 62, 0.15);
    border-radius: 12px;
    padding: 18px;
    text-align: center;
}

/* SMALLER IMAGE */
.review-photo {
    width: 100%;
    max-width: 180px;   /* makes images smaller */
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 0 auto 12px;
}

/* NAME */
.review-card h3 {
    color: #f43e3e;
    margin-bottom: 8px;
    font-size: 1rem;
}

/* TEXT */
.review-card p {
    color: #f5e9e2;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* RESPONSE TEXT */
.review-response {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #d8b3b3;
    font-style: italic;
}




.about-container {
    padding: 120px 20px;
    max-width: 800px;
    margin: auto;
    text-align: center;
}



/* TITLE-about page */
.main-title {
    font-size: 42px;
    margin-bottom: 20px;
}

/* INTRO */
.intro {
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 50px;
}

/* TEXT BLOCKS */
.text-block {
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0.9;
}

/* QUOTES */
.quote {
    font-style: italic;
    font-size: 20px;
    margin: 60px 0;
    opacity: 0.7;
}

/* HIGHLIGHT SECTION */
.highlight {
    font-size: 18px;
    font-weight: 500;
}

/* CLOSING */
.closing {
    margin-top: 80px;
}

.signature {
    margin-top: 10px;
    font-style: italic;
}

/* FINAL QUOTE */
.final-quote {
    margin-top: 60px;
    font-size: 18px;
    opacity: 0.6;
}

body::after {
  content: "";
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('grain.png') repeat;
  opacity: 0.05; /* adjust for subtlety */
  z-index: 9999;
}

.bg-section {
  height: 60vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  background: rgba(0,0,0,0.5);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-section {
    height: 60vh;               /* or adjust to taste */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    background: rgba(0,0,0,0.5); /* darkens the image for text readability */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;             /* adds breathing room on small screens */
}

.final-quote p {
    color: #f5e9e2;              /* light text color */
    font-size: 28px;              /* bigger for emphasis */
    font-style: italic;           /* poetic style */
    max-width: 700px;
    line-height: 1.6;
}


/* --- NAVBAR --- */
.navbar {
    background-color: #0d0d0d;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar a {
    color: #f43e3e;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
}

.navbar a.current {
    border-bottom: 2px solid #f43e3e;
}




/* MERCH HEADER */
.merch-header {
    text-align: center;
    padding: 70px 20px 40px;
    color: #f5e9e2;
}

.merch-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.merch-header p {
    opacity: 0.8;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

/* MERCH PAGE */
.merch-section {
    padding: 20px 40px 60px;
}

.section-title {
    color: #f43e3e;
    font-size: 30px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(244, 62, 62, 0.4);
    padding-bottom: 10px;
}

/* GRID */
.merch-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 40px;
}


.product {
    background: #140909;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(244, 62, 62, 0.15);
}

/* BIG IMAGE */
.product img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;   /* keeps perfect cinematic shape */
    object-fit: cover;
}

/* TEXT BELOW */
.product-info {
    padding: 30px;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.product-info h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.price {
    font-size: 20px;
    margin-bottom: 15px;
}

.details {
    margin-bottom: 15px;
    opacity: 0.8;
}

.description {
    line-height: 1.8;
}


/* TABLET */
@media (max-width: 900px) {
    .product {
        grid-template-columns: 1fr;
    }

    .product img {
        min-height: 360px;
        max-height: 420px;
    }

    .product-info {
        padding: 22px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .merch-header {
        padding: 50px 20px 30px;
    }

    .merch-header h1 {
        font-size: 34px;
    }

    .merch-section {
        padding: 20px;
    }

    .section-title {
        font-size: 24px;
    }

    .product img {
        min-height: 300px;
        max-height: 360px;
    }

    .product-info h3 {
        font-size: 22px;
    }

    .price {
        font-size: 18px;
    }
}



/* CONTACT PAGE LAYOUT */
/* CONTACT PAGE BACKGROUND */
.contact-page {
    background: url("contact/images/wallpaper.jpg") no-repeat center center / cover;
    background-attachment: fixed;
    color: #f5e9e2;
    font-family: 'Georgia', serif;
    position: relative;
}

.contact-page::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: -1;
}

/* CONTACT PAGE LAYOUT */
.contact-container {
    max-width: 900px;
    margin: auto;
    padding: 70px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* TITLE */
.contact-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: #f5e9e2;
    text-shadow: 0 0 18px rgba(244, 62, 62, 0.25);
}

/* INTRO TEXT */
.intro-text {
    max-width: 720px;
    margin: 0 auto 45px;
    font-style: italic;
    opacity: 0.9;
    line-height: 1.8;
}

/* SECTION TITLES */
.contact-container h2 {
    margin-top: 50px;
    margin-bottom: 12px;
    font-size: 28px;
    color: #f5e9e2;
}

.contact-container h2::after {
    content: " ❤️";
}

/* SMALL INTRO UNDER SECTIONS */
.section-intro {
    max-width: 620px;
    margin: 0 auto 20px;
    opacity: 0.85;
}

/* FLOATING FORM CARD */
.form-card,
.order-form {
    background: rgba(20, 9, 9, 0.82);
    border: 1px solid rgba(244, 62, 62, 0.18);
    border-radius: 18px;
    padding: 30px;
    max-width: 650px;
    margin: 35px auto;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);
}

/* FORMS */
.contact-form,
.order-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

/* LABELS */
.contact-form label,
.order-form label {
    font-size: 14px;
    color: #f5e9e2;
    opacity: 0.85;
}

/* INPUTS */
.contact-form input,
.contact-form textarea,
.order-form input,
.order-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: none;
    border-radius: 10px;
    background: rgba(8, 8, 8, 0.75);
    color: #f5e9e2;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
}

/* PLACEHOLDER */
.contact-form input::placeholder,
.contact-form textarea::placeholder,
.order-form input::placeholder,
.order-form textarea::placeholder {
    color: rgba(245, 233, 226, 0.55);
}

/* TEXTAREA */
.contact-form textarea,
.order-form textarea {
    min-height: 110px;
    resize: vertical;
}

/* BUTTONS */
.contact-form button,
.order-form button,
.submit-btn {
    margin-top: 8px;
    padding: 14px;
    background: #f43e3e;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover,
.order-form button:hover,
.submit-btn:hover {
    background: #cc2f2f;
    transform: translateY(-2px);
}

/* SOCIALS */
.contact-container ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.contact-container ul li {
    margin: 10px 0;
    color: #f5e9e2;
    opacity: 0.9;
}

/* FINAL QUOTE */
.closing-quote {
    margin-top: 50px;
    font-style: italic;
    opacity: 0.8;
    font-size: 18px;
}

/* MOBILE */
@media (max-width: 768px) {
    .contact-container {
        padding: 50px 16px;
    }

    .contact-title {
        font-size: 32px;
    }

    .contact-container h2 {
        font-size: 24px;
    }

    .form-card,
    .order-form {
        padding: 22px;
    }
}