/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #014D4D;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #F9E7E7, #014D4D);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #F9E7E7 0%, #fff 50%, #F9E7E7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23F9E7E7" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23014D4D" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.logo-container {
    margin-bottom: 2rem;
}

.brand-logo {
    width: 150px;
    height: auto;
    margin: 0 auto;
    display: block;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 10px 30px rgba(1, 77, 77, 0.1));
}

.brand-logo:hover {
    transform: scale(1.05);
}

.brand-name {
    font-size: 4rem;
    color: #014D4D;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.tagline {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-cta {
    margin-top: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #014D4D, #026666);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(1, 77, 77, 0.3);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(1, 77, 77, 0.4);
    background: linear-gradient(135deg, #026666, #014D4D);
}

/* About Section */
.about {
    padding: 100px 0;
    background: #fff;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    font-weight: 300;
}

/* Jewellery Section */
.jewellery {
    padding: 100px 0;
    background: linear-gradient(135deg, #F9E7E7 0%, #fff 100%);
}

.jewellery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 2rem;
}

.jewellery-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.jewellery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.jewellery-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.jewellery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.jewellery-item:hover .jewellery-image img {
    transform: scale(1.1);
}

.jewellery-item h3 {
    font-size: 1.5rem;
    color: #014D4D;
    margin: 1.5rem 0 1rem;
    padding: 0 1rem;
}

.jewellery-item p {
    color: #666;
    padding: 0 1rem 2rem;
    font-weight: 300;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #014D4D;
    color: white;
    text-align: center;
}

.contact .section-title {
    color: white;
}

.contact .section-title::after {
    background: linear-gradient(90deg, #F9E7E7, #fff);
}

.contact-text {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-weight: 300;
    opacity: 0.9;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp, .btn-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-email {
    background: transparent;
    color: white;
    border-color: #F9E7E7;
}

.btn-email:hover {
    background: #F9E7E7;
    color: #014D4D;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 30px 0;
}

.footer p {
    font-weight: 300;
    opacity: 0.8;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .brand-name {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-text {
        font-size: 1.1rem;
    }
    
    .jewellery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-whatsapp, .btn-email {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .brand-logo {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn-primary {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
    
    .jewellery-item h3 {
        font-size: 1.3rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
.jewellery-image img {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Hover effects for interactive elements */
.jewellery-item, .btn-primary, .btn-whatsapp, .btn-email {
    cursor: pointer;
}

/* Focus states for accessibility */
.btn-primary:focus, .btn-whatsapp:focus, .btn-email:focus {
    outline: 2px solid #F9E7E7;
    outline-offset: 2px;
}
