﻿/* =========================================
   RESET & BASE STYLES
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* =========================================
   HEADER
========================================= */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
}

.brand-logo {
    height: 50px;
    margin-right: 0.5rem;
}

.brand-name {
    font-weight: 600;
    font-size: 1.25rem;
    color: #e91e63;
}

.nav {
    display: flex;
    gap: 1.5rem;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #e91e63;
}

/* Mobile Menu */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: #333;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
}

.nav-toggle-label span::before {
    top: -8px;
}

.nav-toggle-label span::after {
    top: 8px;
}

@media (max-width: 768px) {
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav a {
        padding: 1rem 0;
    }

    .nav-toggle:checked ~ .nav {
        max-height: 300px;
    }

    .nav-toggle-label {
        display: block;
    }
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    background: url('assets/hero_img.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 1rem;
}

.hero-tag {
    display: block;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero h1 span {
    color: #e91e63;
}

.hero-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.hero-actions .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    margin: 0.5rem;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn.primary {
    background-color: #e91e63;
    color: #fff;
}

.btn.primary:hover {
    background-color: #d81b60;
}

.btn.outline {
    border: 2px solid #e91e63;
    color: #e91e63;
}

.btn.outline:hover {
    background-color: #e91e63;
    color: #fff;
}

/* Hero Meta Info */
.hero-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.hero-meta div {
    text-align: center;
}

.hero-meta strong {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* =========================================
   SECTIONS
========================================= */
.section {
    padding: 5rem 1rem;
}

.section.gray {
    background: #f7f7f7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* reduced side space */
}

/* Section Titles */
.section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #e91e63;
}

.text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #555;
}

/* Cards */
.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* =========================================
   GALLERY / COLLECTION
========================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* slightly broader */
    gap: 0.5rem; /* reduced gap to make it broader */
}

.gallery-card {
    height: auto; /* let image define height */
}

.gallery-card img {
    width: 100%;
    height: auto; /* maintain image aspect ratio */
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.gallery-card img:hover {
    transform: scale(1.05);
}

/* Contact Section */
.contact-section .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.contact-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-size: 20px;
}

.contact-card h4 {
    margin-bottom: 0.5rem;
    color: #e91e63;
}

.contact-card a {
    color: #e91e63;
    text-decoration: none;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 2rem 1rem 1rem;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 0.5rem;
}

.footer-links a {
    display: block;
    text-decoration: none;
    color: #fff;
    margin: 0.25rem 0;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #e91e63;
}

.footer-contact p {
    margin: 0.25rem 0;
}

.footer-bottom {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #aaa;
}

/* =========================================
   RESPONSIVE TYPOGRAPHY
========================================= */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 0.4rem;
    }
}