/* --- Global Styles & Variables --- */
:root {
    --primary-color: #333333; /* Charcoal Grey */
    --secondary-color: #FFFFFF; /* Cool White */
    --accent-color: #FF5722; /* Bold Orange */
    --light-grey: #f4f4f4;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Lato', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--primary-color);
    margin: 0;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-top: 0;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 50px; }
a { text-decoration: none; color: var(--accent-color); }

section {
    padding: 80px 0;
}

/* --- Header & Navigation --- */
/* --- Header & Navigation --- */
.main-header {
    background: var(--secondary-color);
    padding: 15px 0;
    position: sticky; /* MODIFIED: This makes it part of the layout */
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-nav li {
    margin: 0 15px;
}

.main-nav a {
    color: var(--primary-color);
    font-weight: 700;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--accent-color);
}

.cta-button {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e64a19;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
}

/* --- Hero Section --- */
/* --- Hero Section --- */
.hero-section {
    background: url('../Assets/homebg.jpg') no-repeat center center/cover;
    /* MODIFIED: Adjust height to account for the sticky header's space */
    height: calc(90vh - 60px);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--secondary-color);
    text-align: left;
    padding-top: 0; /* MODIFIED: Set padding to 0 or remove the line */
}

.hero-section .container {
    max-width: 600px;
}

.hero-section h1 {
    color: var(--secondary-color);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

.primary-cta {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* --- Benefits Section --- */
.benefits-section {
    background: var(--secondary-color);
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}
.benefit-item .icon {
    /* ADD THESE TWO LINES TO CONTROL THE SIZE */
    width: 50px;
    height: 50px;

    margin-bottom: 15px;
    border-radius: 50%;
    object-fit: cover; /* Ensures the image inside scales nicely */
}
.benefit-item h3 {
    margin-bottom: 10px;
}

/* --- Collections Section --- */
.collections-section {
    background: var(--light-grey);
}
.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.collection-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}
.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.collection-card:hover img {
    transform: scale(1.1);
}
.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    color: var(--secondary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.collection-card:hover .collection-overlay {
    opacity: 1;
}
.collection-overlay h3 { color: var(--secondary-color); }
.cta-button-small {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 8px 16px;
    border-radius: 5px;
    margin-top: 10px;
    transition: all 0.3s ease;
}
.cta-button-small:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* --- Feature Section --- */
.feature-container {
    display: flex;
    align-items: center;
    gap: 50px;
}
.feature-image, .feature-content {
    flex: 1;
}
.feature-image img {
    width: 100%;
    border-radius: 8px;
}
.feature-content h2 { text-align: left; }
.learn-more-link { font-weight: bold; }

/* --- Testimonial Section --- */
.testimonial-section {
    background: var(--light-grey);
}
.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
    /* Adding a min-height to prevent layout shift */
    min-height: 180px; 
}
.testimonial {
    display: none;
    animation: fadeIn 0.8s;
}
.testimonial.active {
    display: block;
}
.testimonial p {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 20px;
}
.testimonial span {
    font-weight: bold;
    color: var(--primary-color);
}
.slider-controls {
    text-align: center;
    margin-top: 20px;
    display: none;
}
.prev-btn, .next-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    margin: 0 10px;
    
}

/* ADD STYLES FOR DOTS BELOW */
.testimonial-dots {
    text-align: center;
    margin-top: 25px;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.4s ease;
}

.dot.active {
    background-color: var(--accent-color);
}

/* ADD FADE ANIMATION */
@keyframes fadeIn {
  from {opacity: .4} 
  to {opacity: 1}
}
/* --- Final CTA Section --- */
.final-cta-section {
    background: var(--primary-color);
    color: var(--secondary-color);
    text-align: center;
}
.final-cta-section h2 {
    color: var(--secondary-color);
}

/* --- Footer --- */
.main-footer {
    background: var(--primary-color);
    color: var(--light-grey);
    padding-top: 60px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h3 {
    color: var(--secondary-color);
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col li {
    margin-bottom: 10px;
}
.footer-col a {
    color: var(--light-grey);
    transition: color 0.3s;
}
.footer-col a:hover {
    color: var(--accent-color);
}
.footer-bottom {
    border-top: 1px solid #444;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}
.footer-bottom a {
    color: var(--light-grey);
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .main-nav { display: none; }
    .mobile-nav-toggle { display: block; }
    .cta-button { display: none; }
    .logo { flex-grow: 1; }
    
    .collections-grid { grid-template-columns: 1fr; }
    .feature-container { flex-direction: column; }
}