/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 200;
    box-sizing: border-box;
	text-align: center;
}
body {
	font-family: 'Playfair Display', serif;
    background-color:black;
    height: 100%;
    color: #333;
}

/* HEADER */
header {
	position: sticky;
    top: 0;
    width: 100%;
    background: white; /* Keeps it visible */
    padding: 15px 0;
    text-align: center;
    z-index: 1000; /* Ensures it stays on top */
    display: flex;
    flex-direction: column;  /* Stack title & nav vertically */
    align-items: center;     /* Center items horizontally */
    justify-content: center; /* Center content vertically */
    background-color: #b1256f;
    color: #f1a5a3;
	transition: box-shadow 0.3s ease-in-out;
	border-radius: 50px; /* Makes the shadow effect rounder */
}

header.scrolled {
    box-shadow: 0px 0px 20px 5px rgba(255, 255, 255, 0.5); /* Glow effect */
    border-radius: 50px; /* Ensures shadow keeps circular shape */
}
header h1 {
    margin-bottom: 20px; /* Adjust as needed */
}
nav ul {
	color: #f1a5a3;
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: #f1a5a3; /* Default text color */
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 15px; /* Adds clickable padding */
    transition: color 0.3s ease, background 0.3s ease;
}

/* Hover effect */
nav a:hover {
    color: #b1256f; /* New text color on hover */
    background: #f1a5a3; /* Background color change */
    border-radius: 40px; /* Optional: Rounded corners */
}

/* HERO SECTION */
.hero {
    background: url('assets/hero-bg.jpg') no-repeat center/cover;
    min-height: 100vh; /* Full screen */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #f1a5a3;
    position: relative;
}

/* Add a dark overlay for better readability */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}

/* Ensure text stays above the overlay */
.hero-content {
    position: relative;
    z-index: 2;
}

/* CTA Button */
.shop-btn {
    background: #d63384;
    border: none;
    padding: 10px 20px;
    color: #f1a5a3;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    transition: 0.3s ease-in-out;
}

.shop-btn:hover {
    background: #b1256f;
    transform: scale(1.1);
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
	colour: #f1a5a3;
}

.shop-btn {
    background: black;
    border: none;
    padding: 10px 20px;
    color: #f1a5a3;
    font-size: 18px;
    cursor: pointer;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #b1256f;
    color: #f1a5a3;
	border-radius: 50px;  /* Curves the top-left corner */
    
}
footer.scrolled {
    box-shadow: 0px 0px 20px 5px rgba(255, 255, 255, 0.5); /* Glow effect */
    border-radius: 50px; /* Ensures shadow keeps circular shape */
}
/* Age Verification Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
}

.modal-content h2 {
    margin-bottom: 20px;
}

.modal-content button {
    margin: 10px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

#yes-btn {
    background: green;
    color: white;
}

#no-btn {
    background: red;
    color: white;
}
/* Profile Title */
.profile-title {
    text-align: center;
    padding: 40px;
    font-size: 2rem;
    color: white;
	background: black
}

/* Profile Section: Text & Image */
.profile-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 50px 10%;
	color: white;
}

.profile-section.reverse {
    flex-direction: row-reverse;
}

.text-box, .image-box {
    width: 100%;
	align-self: center
}

.image-box img {
    width: 100%;
    border-radius: 10px;
}

/* Stats Section */
.stats {
    background: black;
    color: white;
    text-align: center;
    padding: 40px 10%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
	background-color: #b1256f;
}

/* Testimonials Section */
.testimonials {
    background: black;
    color: white;
    text-align: center;
    padding: 40px 10%;
}

.testimonial-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 20px;
}

.testimonial {
    min-width: 250px;
    background: white;
    color: black;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.3);
}
/* Grid Container */
.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 20px auto;
}

.grid-box {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-box:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.grid-box img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.grid-box p {
    margin: 10px 0;
    font-size: 18px;
    font-weight: bold;
}

/* Popup Styles */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    text-align: center;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}
/* Make footer background same as header */
footer {
    background: #b1256f;
    color: white;
    text-align: center;
    padding: 20px;
}
