/* ===================================
   Plethoria Custom Styles
   Primary Color: Cactus Green #979702
   Secondary Color: Pastel Cyan #7DD3C0
   =================================== */

:root {
    --primary-color: #979702;
    --secondary-color: #7DD3C0;
    --dark-text: #2c2c2c;
    --light-text: #6c6c6c;
    --white: #ffffff;
    --light-bg: #f9f9f7;
    --border-color: #e5e5e5;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--dark-text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--light-text);
    line-height: 1.8;
}

/* ===================================
   Side Navigation
   =================================== */

.side-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
    transition: transform 0.3s ease;
}

.nav-brand {
    padding: 0 2rem 2rem;
    border-bottom: 1px solid var(--border-color);
}

.nav-logo {
    max-width: 200px;
    height: auto;
    display: block;
}

.nav-menu {
    list-style: none;
    padding: 2rem 0;
    margin: 0;
    flex-grow: 1;
}

.nav-item {
    margin: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    color: var(--dark-text);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link i {
    font-size: 1.25rem;
    margin-right: 1rem;
    color: var(--light-text);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(151, 151, 2, 0.05);
}

.nav-link:hover i {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color);
    background: rgba(151, 151, 2, 0.08);
    border-left: 4px solid var(--primary-color);
}

.nav-link.active i {
    color: var(--primary-color);
}

.nav-footer {
    padding: 0 2rem;
    border-top: 1px solid var(--border-color);
    pt: 2rem;
}

.btn-nav {
    width: 100%;
    margin-top: 2rem;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
    display: none;
    position: fixed;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 1001;
    background: var(--primary-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.mobile-nav-toggle:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

/* ===================================
   Main Content (offset for side nav)
   =================================== */

body {
    padding-left: 280px;
}

/* ===================================
   Hero Section
   =================================== */

.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-carousel img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-carousel img.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(151, 151, 2, 0.3) 0%, rgba(125, 211, 192, 0.2) 100%);
    z-index: 1;
}

.hero-logo-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

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

.hero-tagline {
    font-size: 3rem;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

/* ===================================
   About Section
   =================================== */

.about-section {
    padding: 6rem 0;
    background: var(--white);
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-image-wrapper img {
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.about-content {
    padding: 0 2rem;
}

.rounded-custom {
    border-radius: 12px;
}

/* ===================================
   Collections Section
   =================================== */

.collections-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.collection-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.collection-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-card:hover .collection-image img {
    transform: scale(1.1);
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(151, 151, 2, 0.6), rgba(125, 211, 192, 0.7));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem;
    text-align: center;
}

.collection-card:hover .collection-overlay {
    opacity: 1;
}

.collection-overlay h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.collection-overlay p {
    color: var(--white);
    font-size: 1rem;
}

.collection-body {
    padding: 2rem;
}

.collection-body h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.collection-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.collection-features li {
    padding: 0.5rem 0;
    color: var(--light-text);
    display: flex;
    align-items: center;
}

.collection-features i {
    color: var(--secondary-color);
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

/* ===================================
   Craftsmanship Section
   =================================== */

.craftsmanship-section {
    padding: 6rem 0;
    background: var(--white);
}

.craftsmanship-features {
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.feature-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.feature-icon-circle i {
    font-size: 1.5rem;
    color: var(--white);
}

.feature-text h5 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.feature-text p {
    color: var(--light-text);
    margin: 0;
}

.craftsmanship-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    height: 100%;
}

.craftsmanship-image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.grid-img-1 {
    grid-row: span 2;
}

/* ===================================
   Contact Section
   =================================== */

.contact-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.contact-info-cards {
    margin: 3rem 0;
}

.contact-info-card {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-info-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info-card h5 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--dark-text);
}

.contact-info-card a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

.contact-info-card p {
    margin: 0;
    color: var(--light-text);
}

.cta-message {
    margin-top: 3rem;
}

.cta-message p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

/* ===================================
   Footer
   =================================== */

.site-footer {
    background: var(--dark-text);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
}

.site-footer h5 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-tagline {
    color: var(--secondary-color);
    font-style: italic;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2.5rem 0 1.5rem;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===================================
   Buttons
   =================================== */

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(125, 211, 192, 0.3);
}

/* ===================================
   Animations
   =================================== */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Legal Pages
   =================================== */

.legal-page {
    padding: 8rem 0 6rem;
    background: var(--white);
}

.legal-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--light-text);
    font-size: 0.875rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.legal-content h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.25rem;
    color: var(--dark-text);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
    line-height: 1.8;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-info {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.contact-info p {
    margin: 0;
    line-height: 1.8;
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 991px) {
    body {
        padding-left: 0;
    }

    .side-nav {
        transform: translateX(-100%);
    }

    .side-nav.active {
        transform: translateX(0);
    }

    .mobile-nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-logo {
        max-width: 350px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.75rem;
    }

    .hero-tagline {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-logo {
        max-width: 250px;
    }

    .about-content,
    .craftsmanship-content {
        padding: 0;
    }

    .about-section,
    .collections-section,
    .craftsmanship-section,
    .contact-section {
        padding: 4rem 0;
    }

    .craftsmanship-image-grid {
        grid-template-columns: 1fr;
    }

    .grid-img-1 {
        grid-row: span 1;
    }
}

@media (max-width: 575px) {
    .collection-image {
        height: 250px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon-circle {
        margin: 0 auto 1rem;
    }
}
