@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Montserrat:wght@300;400;500;600&family=Mukta+Malar:wght@400;600;700&display=swap');

:root {
    --bg-light: #fbfaf8;
    --bg-dark: #111111;
    --primary-color: #d4af37; /* Luxury Gold */
    --accent-color: #1b2a26; /* Deep Forest Green */
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --font-heading: 'Marcellus', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-tamil: 'Mukta Malar', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

.tamil-text {
    font-family: var(--font-tamil);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.logo img {
    height: 50px;
    transition: var(--transition);
    border-radius: 50%;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 5px;
    transition: var(--transition);
}

header.scrolled nav a {
    color: var(--text-dark);
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav a:hover::after, nav a.active::after {
    width: 100%;
}

.cart-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

header.scrolled .cart-btn {
    color: var(--text-dark);
}

.cart-btn:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background-color: var(--bg-dark);
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    margin-top: 5rem;
}

.hero-content {
    color: var(--text-light);
    z-index: 2;
}

.hero-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

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

.hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 500px;
}

.btn-luxury {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--primary-color);
    color: var(--bg-dark);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--primary-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-luxury:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.hero-images {
    position: relative;
    height: 600px;
}

.img-main {
    position: absolute;
    width: 70%;
    height: 80%;
    object-fit: cover;
    right: 0;
    top: 0;
    border-radius: 4px;
    box-shadow: -20px 20px 50px rgba(0,0,0,0.5);
    transition: transform 0.5s ease;
}

.img-accent {
    position: absolute;
    width: 50%;
    height: 50%;
    object-fit: cover;
    left: 0;
    bottom: 0;
    border-radius: 4px;
    border: 10px solid var(--bg-dark);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    z-index: 2;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--accent-color);
}

.section-subtitle {
    text-align: center;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-body);
}

/* Products Section */
.products {
    padding: 8rem 5%;
    background-color: var(--bg-light);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
}

.product-card {
    background: transparent;
    transition: var(--transition);
    position: relative;
    group: hover;
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    aspect-ratio: 4/5;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--bg-dark);
    color: var(--primary-color);
    padding: 5px 15px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.product-info {
    text-align: center;
}

.product-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.product-tamil {
    color: var(--text-dark);
    font-size: 1rem;
    opacity: 0.6;
    margin-bottom: 1rem;
    display: block;
}

.product-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.price {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

.add-to-cart {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--text-dark);
    color: var(--text-dark);
    padding-bottom: 5px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
}

.add-to-cart:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Heritage Section */
.heritage {
    padding: 8rem 5%;
    background-color: var(--accent-color);
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5rem;
}

.heritage-content {
    flex: 1;
}

.heritage-content .section-title {
    text-align: left;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.heritage-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.heritage-image {
    flex: 1;
    position: relative;
}

.heritage-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 4px;
}

/* Footer */
footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 6rem 5% 3rem;
    text-align: center;
}

.footer-logo {
    height: 80px;
    margin-bottom: 2rem;
    border-radius: 50%;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.footer-social a {
    color: var(--text-light);
    font-size: 1.2rem;
    transition: var(--transition);
}

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

.copyright {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 3rem;
}

/* Blog Overview */
.blog-section {
    padding: 8rem 5%;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
}

.blog-card {
    text-decoration: none;
    color: inherit;
    display: block;
    group: hover;
}

.blog-img-wrapper {
    overflow: hidden;
    aspect-ratio: 16/10;
    margin-bottom: 1.5rem;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-meta {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.blog-title {
    font-size: 1.6rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero-images { height: 400px; }
    .heritage { flex-direction: column; }
    nav ul { display: none; }
    .hero h1 { font-size: 3rem; }
}
