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

:root {
    --primary: #FFB300;
    --primary-light: #FFD54F;
    --primary-dark: #FFA000;
    --secondary: #3E2723;
    --accent: #FF6F00;
    --bg-light: #FFFBF0;
    --text-dark: #212121;
    --text-light: #F5F5F5;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow: 0 8px 32px 0 rgba(139, 69, 19, 0.2);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
}

/* Scroll Smoothing */
html {
    scroll-behavior: smooth;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

header.scrolled {
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 0.5rem 5%;
    box-shadow: var(--shadow);
}

#main-logo {
    height: 150px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
}

header.scrolled #main-logo {
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo i {
    color: var(--primary);
}

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

nav a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-dark);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/WhatsApp Image 2026-04-22 at 20.37.37 (1).jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    padding: 0 5%;
}

.hero-logo {
    height: 200px;
    width: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.3));
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1.5rem;
}

.reg-no {
    font-size: 1.2rem;
    font-weight: 600;
    /* color: var(--primary); */
    /* letter-spacing: 2px; */
    /* background: rgba(0,0,0,0.3); */
    /* padding: 0.2rem 1rem;
    border-radius: 5px; */
    font-family: 'Montserrat', sans-serif;
}

.tamil-subtitle {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: var(--primary-light);
    font-style: italic;
}

.mission-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    opacity: 0.8;
}

.btn {
    padding: 1rem 2.5rem;
    background-color: var(--primary);
    color: var(--secondary);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 179, 0, 0.4);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 179, 0, 0.6);
}

/* Sections Global */
section {
    padding: 6rem 10%;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--secondary);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 1rem auto;
    border-radius: 2px;
}

/* Products Grid */
.product-category {
    margin-bottom: 4rem;
}

.product-category h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--accent);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 179, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

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

.product-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

/* Society Section */
.society {
    background-color: #FAFAFA;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.society-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.society-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

/* Footer */
footer {
    background-color: var(--secondary);
    color: var(--text-light);
    padding: 4rem 10% 2rem;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: left;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .society {
        grid-template-columns: 1fr;
    }

    #main-logo {
        height: 100px;
    }

    header.scrolled #main-logo {
        height: 60px;
    }

    /* Could add a hamburger menu if needed */
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}