:root {
    --primary: #EFB3D1; /* Perfect Pink from Screenshot */
    --secondary: #FFFFFF;
    --text: #333333;
    --text-muted: #666666;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

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

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 400;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* Header */
header {
    padding: 1.5rem 4rem;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
}

.nav-links {
    display: flex;
    gap: 4rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Hero */
.hero {
    display: flex;
    align-items: center;
    padding: 100px 0;
    gap: 6rem;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 5.5rem;
    line-height: 0.95;
    margin-bottom: 2rem;
}

.hero p {
    font-size: 1.25rem;
    color: #444;
    margin-bottom: 3rem;
    max-width: 500px;
}

.hero-image {
    flex: 1.2;
}

.hero-image img {
    width: 100%;
    border-radius: 40px;
    object-fit: cover;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn-pink {
    background-color: var(--primary);
    color: white;
    border-radius: 8px;
}

.btn-rounded {
    background-color: var(--primary);
    color: white;
    border-radius: 50px;
    padding: 0.8rem 2.5rem;
}

/* The Collection */
.collection {
    padding: 120px 0;
}

.collection h2 {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 60px;
}

.card {
    border: 1px solid #f2d4e1;
    padding: 2rem;
    border-radius: 20px;
    transition: 0.3s;
}

.card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* Visit Us */
.visit {
    padding: 120px 0;
    background: #fff;
    display: flex;
    gap: 6rem;
    align-items: center;
}

.visit-info {
    flex: 1;
}

.visit-info h2 {
    font-size: 5rem;
    margin-bottom: 3rem;
}

.visit-details {
    font-size: 3rem;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.visit-address {
    font-size: 1.2rem;
    color: #666;
    margin-top: 2rem;
    line-height: 1.6;
    font-family: var(--font-body);
}

.visit-map {
    flex: 1.5;
    height: 600px;
    border-radius: 0; /* Matches the map block in screenshot */
    overflow: hidden;
}

/* Footer */
footer {
    padding: 100px 0 60px;
    border-top: 1px solid #eee;
}

.footer-grid {
    display: grid;
    grid-template-columns: 0.5fr 1fr 1.5fr;
    align-items: center;
    gap: 4rem;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-socials a {
    font-size: 1.5rem;
    color: white !important;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.footer-socials a:hover {
    transform: scale(1.1);
}

.footer-socials a.facebook { background-color: #1877f2; }
.footer-socials a.instagram { background-color: #e4405f; }
.footer-socials a.whatsapp { background-color: #25d366; }

.footer-tagline {
    text-align: right;
    color: #444;
    font-size: 1.1rem;
    line-height: 1.6;
}

.footer-copyright {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
    margin-top: 4rem;
    color: #666;
    font-size: 0.95rem;
}

/* Animation */
.hidden { opacity: 0; transform: translateY(30px); }
.visible { opacity: 1; transform: translateY(0); transition: 0.8s ease; }
