/* Design System - Monochrome */
:root {
    --primary: #000000; /* Pure Black */
    --accent: #666666; /* Medium Grey */
    --bg-dark: #000000;
    --bg-light: #FFFFFF;
    --text-main: #1A1A1A;
    --text-muted: #555555;
    --white: #FFFFFF;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow: 0 10px 40px rgba(0,0,0,0.08);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, .logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
}

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

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
}

/* Logo Image removed as per request */

.brand-text {
    font-family: 'Quintessential', cursive;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--primary);
    line-height: 1;
    text-transform: none;
    letter-spacing: 1px;
    margin-top: 5px;
}

.brand-text span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.65rem;
    display: block;
    letter-spacing: 8px;
    color: var(--text-muted);
    margin-top: 5px;
    text-transform: uppercase;
}

.logo:hover .brand-text {
    transform: translateY(-2px);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

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

.booking-btn a,
.admin-btn {
    padding: 0.6rem 1.5rem;
    background: var(--bg-dark);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking-btn a:hover,
.admin-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
    color: var(--white) !important;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    position: relative;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
    z-index: 1;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 6rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
    line-height: 1;
}

.hero-content h1 span {
    display: block;
    font-style: italic;
    color: var(--accent); /* Changed from primary for better readability on dark */
    -webkit-text-stroke: 1px var(--white);
    color: transparent;
}

.hero-content p {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn.primary {
    background: var(--primary);
    color: var(--white);
}

.btn.secondary {
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

/* About Section */
.about {
    padding: 8rem 0;
}

.subtitle {
    display: block;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.about-text h2 span {
    color: var(--accent);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin-bottom: 1.5rem;
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: #F9F9F9;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title h2 {
    font-size: 3.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.service-card {
    background: var(--white);
    padding: 0;
    border: 1px solid #EEE;
    border-radius: 0;
    box-shadow: none;
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--primary);
}

.service-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease, filter 0.5s ease;
    filter: grayscale(100%);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.service-card h3 {
    font-size: 1.8rem;
    padding: 2rem 2rem 1rem;
    margin: 0;
    color: var(--primary);
    border-bottom: none;
}

.service-card ul {
    list-style: none;
    padding: 0 2rem 3rem;
    flex-grow: 1;
}

.service-card li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #F5F5F5;
    font-weight: 500;
    color: var(--text-muted);
    opacity: 0;
    transform: translateX(-10px);
}

.service-card.active li {
    animation: slideInLeft 0.5s forwards;
}

.service-card.active li:nth-child(1) { animation-delay: 0.1s; }
.service-card.active li:nth-child(2) { animation-delay: 0.2s; }
.service-card.active li:nth-child(3) { animation-delay: 0.3s; }
.service-card.active li:nth-child(4) { animation-delay: 0.4s; }
.service-card.active li:nth-child(5) { animation-delay: 0.5s; }
.service-card.active li:nth-child(6) { animation-delay: 0.6s; }
.service-card.active li:nth-child(7) { animation-delay: 0.7s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Features */
.features {
    padding: 8rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.feature-item .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    margin-bottom: 1rem;
}

/* Contact */
.contact {
    padding-bottom: 8rem;
}

.contact-box {
    background: var(--bg-dark);
    color: var(--white);
    padding: 5rem;
    border-radius: 20px;
    text-align: center;
}

.contact-box h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-box p {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 3.5rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 1;
}

.contact-btn {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact-details span {
    color: var(--white);
    font-weight: 900;
    font-size: 2rem;
    display: block;
    margin-top: 0.5rem;
}

.insta-link {
    margin-top: 4rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.insta-link a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 600;
}

/* Footer */
.footer {
    padding: 3rem;
    text-align: center;
    border-top: 1px solid #EEE;
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

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

/* --- Responsive Design --- */
/* Tablet & Small Desktop (max-width: 1024px) */
@media (max-width: 1024px) {
    .container { padding: 0 2rem; }
    .hero-content h1 { font-size: 5rem; }
    .services-grid { gap: 1.5rem; }
    .about-text h2 { font-size: 2.5rem; }
}

/* Tablet (max-width: 968px) */
@media (max-width: 968px) {
    .hero-content h1 { font-size: 4rem; }
    .services-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .nav-links { display: none; } /* Kept simple without hamburger for now */
    .contact-box { padding: 4rem 2rem; }
}

/* Mobile (max-width: 576px) */
@media (max-width: 576px) {
    .container { padding: 0 1.2rem; }
    .header { padding: 0.5rem 0; }
    .nav-container { padding: 1rem; }
    .brand-text { font-size: 1.2rem; }
    
    .hero-content h1 { font-size: 3rem; letter-spacing: -2px; }
    .hero-content p { font-size: 1rem; }
    .btn { padding: 1rem 2rem; font-size: 0.8rem; }
    .cta-group { flex-direction: column; gap: 1rem; }
    
    .about, .services, .features, .gallery-container, .jewellery-gallery { padding: 5rem 0; }
    .about-text h2, .section-title h2, .contact-box h2 { font-size: 2.2rem; margin-bottom: 1.5rem; }
    .about-text p { font-size: 1rem; }
    
    .features-grid { grid-template-columns: 1fr; gap: 2rem; }
    
    .contact-box p { font-size: 1.1rem; }
    .contact-btn { padding: 1rem 2.5rem; }
    .contact-details span { font-size: 1.5rem; }
}
