:root {
    --primary-color: #c48b7a; /* Rose gold extracted from logo */
    --primary-dark: #a06e5f;
    --background-color: #fdfbf7; /* Cream background from logo */
    --text-color: #4a3d39; /* Dark brown for readability */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

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

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 5%;
    min-height: 85vh;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    max-width: 90%;
    max-height: 350px;
    height: auto;
    filter: drop-shadow(0px 15px 30px rgba(196, 139, 122, 0.15));
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-left: 3rem;
}

h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--primary-color);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 400;
    font-style: italic;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--text-color);
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
    transform: translateY(-2px);
}

/* Categories Section */
.categories {
    padding: 8rem 5%;
    text-align: center;
    background-color: #fff;
}

.categories h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: var(--primary-color);
    margin-bottom: 4rem;
    font-weight: 400;
}

.category-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.category-card {
    background-color: var(--background-color);
    padding: 3.5rem 2rem;
    width: 320px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    border: 1px solid rgba(196, 139, 122, 0.15);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(196, 139, 122, 0.12);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.category-card h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 400;
    font-style: italic;
}

.category-card p {
    font-size: 0.95rem;
    font-weight: 300;
}

/* Footer */
footer {
    text-align: center;
    padding: 3.5rem 5%;
    background-color: var(--background-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    font-style: italic;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.instagram-icon {
    width: 24px;
    height: 24px;
}

.social-links a:hover {
    color: var(--primary-dark);
}

.social-links a:hover .instagram-icon {
    transform: scale(1.1);
}

footer p {
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-dark);
}

/* Responsive */
@media (max-width: 992px) {
    .hero { 
        flex-direction: column; 
        text-align: center; 
        padding: 7rem 5% 4rem; 
        align-items: center; 
    }
    .hero-image { width: 100%; margin-bottom: 5rem; }
    .hero-logo { max-width: 80%; max-height: 250px; }
    .hero-content { padding-left: 0; width: 100%; }
}

@media (max-width: 768px) {
    .categories { padding: 5rem 5%; }
    .category-card { width: 100%; max-width: 350px; }
}