/* --- Variables & Setup --- */
:root {
    --pink-primary: #e83e8c;
    --pink-light: #fdf2f7;
    --text-dark: #2d2d2d;
    --text-gray: #666666;
    --bg-white: #ffffff;
    
    --font-heading: 'Playfair Display', serif;
    --font-cursive: 'Dancing Script', cursive;
    --font-ui: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-ui);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Loading Screen --- */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.heart-pulse {
    font-size: 4rem;
    animation: pulse 1s infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.2); }
}

/* --- Navigation & Mobile Menu --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--bg-white);
    position: relative;
    z-index: 1002;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
}

.nav-links {
    display: flex;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    margin-left: 2rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--pink-primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1003;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* --- Hero Section --- */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 5%;
    background-color: var(--pink-light);
    min-height: 80vh;
}

.hero-content {
    max-width: 800px;
}

.badge {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--text-gray);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero h1 .cursive {
    font-family: var(--font-cursive);
    color: var(--pink-primary);
    font-size: 5.5rem;
    font-weight: 700;
    padding: 0 0.5rem;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

/* --- Buttons --- */
.button-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-primary {
    background-color: var(--pink-primary);
    color: var(--bg-white);
    border: 2px solid var(--pink-primary);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--text-dark);
    border: 2px solid var(--bg-white);
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--bg-white);
    border: 1px solid #eaeaea;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 1rem 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 1000;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.cookie-banner.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 20px);
}

.cookie-banner p { font-size: 0.9rem; margin: 0; }
.cookie-banner a { color: var(--pink-primary); text-decoration: underline; }

/* --- Inner Page Layouts --- */
.page-header {
    text-align: center;
    padding: 4rem 5%;
    background-color: var(--bg-white);
    border-bottom: 1px solid #eaeaea;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--text-dark);
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 5%;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--pink-primary);
    margin-bottom: 1rem;
}

/* Collections Grid */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.collection-card {
    display: block;
    text-decoration: none;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eaeaea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.collection-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 3px solid var(--pink-primary);
}

.card-content {
    padding: 1.5rem;
    text-align: center;
}

.card-content h3 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.card-content p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Terms Layout */
.terms-container { max-width: 800px; }

.term-block {
    margin-bottom: 2.5rem;
    background: var(--pink-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--pink-primary);
}

.term-block h3 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.term-block ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    color: var(--text-gray);
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 3rem 5%;
    background-color: var(--bg-white);
    border-top: 1px solid #eaeaea;
}

footer p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.social-links a {
    color: var(--pink-primary);
    text-decoration: none;
    margin: 0 0.5rem;
    font-weight: 600;
}

.group-links {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.group-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
}

.group-links a:hover { color: var(--pink-primary); }

/* --- Responsive Adjustments & Mobile Menu --- */
@media (max-width: 768px) {
    .hamburger { display: flex; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--bg-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 1001;
        gap: 2rem;
    }

    .nav-links.nav-active { right: 0; }
    .nav-links a { margin: 0; font-size: 1.5rem; }

    .hamburger.toggle span:nth-child(1) { transform: translateY(9px) rotate(45deg); background-color: var(--pink-primary); }
    .hamburger.toggle span:nth-child(2) { opacity: 0; }
    .hamburger.toggle span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); background-color: var(--pink-primary); }

    .hero h1 { font-size: 3rem; }
    .hero h1 .cursive { font-size: 3.5rem; }
    .button-group { flex-direction: column; }
    .cookie-banner { flex-direction: column; width: 90%; gap: 1rem; text-align: center; }
    .about-grid { grid-template-columns: 1fr; }
    .page-header h1 { font-size: 2.5rem; }
}
/* --- Social Icons Update --- */
.social-links a {
    color: var(--pink-primary);
    text-decoration: none;
    font-size: 1.5rem; /* Adjusts the size of the icons */
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    color: var(--text-dark); /* Changes color on hover */
    transform: translateY(-3px); /* Gives a slight bounce effect */
}
