/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #843087;
    --secondary-color: #FFD700;
    --text-color: #333;
    --light-text: #666;
    --background: #fff;
    --gradient: linear-gradient(135deg, #843087 0%, #FFD700 100%);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    padding: 1rem 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar:hover {
    background: rgba(255, 255, 255, 0.25);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    position: relative;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
}

.nav-links a:not(.cta-button):after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:not(.cta-button):hover {
    color: var(--primary-color);
}

.nav-links a:not(.cta-button):hover:after {
    width: 80%;
}

.nav-links .cta-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, #B762BA 100%);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 215, 0, 0.3);
    text-shadow: none;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(132, 48, 135, 0.2);
}

.nav-links .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 215, 0, 0.2) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.nav-links .cta-button:hover {
    transform: translateY(-2px) scale(1.02);
    border-color: var(--secondary-color);
    box-shadow: 0 6px 20px rgba(132, 48, 135, 0.3);
    background: linear-gradient(135deg, #9A3B9D 0%, #C76FCB 100%);
}

.nav-links .cta-button:hover::before {
    transform: translateX(100%);
}

.nav-links .cta-button:active {
    transform: translateY(0) scale(0.98);
}

@media (max-width: 768px) {
    .nav-links .cta-button {
        padding: 0.6rem 1.4rem;
        font-size: 0.9rem;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1562322140-8baeececf3df?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover;
    opacity: 0.1;
    z-index: 0;
    mix-blend-mode: overlay;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    transform: scale(1.1);
    transition: transform 0.6s ease;
}

.hero-image:hover img {
    transform: scale(1);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-statements {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.statement-box {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 15px;
    padding: 1.5rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 600px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.statement-box:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.statement-box p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.4;
}

.crown-icon {
    font-size: 1.8rem;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    background: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.cta-button.secondary:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--background);
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-text {
    margin: 2rem 0;
}

.about-text .highlight {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.about-images {
    position: relative;
    height: 600px;
}

.about-img {
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    position: absolute;
}

.about-img.main {
    width: 80%;
    height: 500px;
    object-fit: cover;
    right: 0;
    top: 0;
}

.about-img.overlay {
    width: 60%;
    height: 350px;
    object-fit: cover;
    left: 0;
    bottom: 0;
    border: 10px solid white;
}

/* Mission Section */
.mission {
    padding: 8rem 0;
    background: var(--primary-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.mission-highlight {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 2rem 0;
    line-height: 1.4;
}

.mission-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mission-point {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.1);
}

.point-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.image-stack {
    position: relative;
    height: 600px;
}

.stack-img {
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    position: absolute;
}

.stack-img.front {
    width: 70%;
    height: 450px;
    object-fit: cover;
    left: 0;
    top: 0;
    z-index: 2;
}

.stack-img.back {
    width: 60%;
    height: 400px;
    object-fit: cover;
    right: 0;
    bottom: 0;
    border: 10px solid var(--primary-color);
}

.mission-stats {
    position: absolute;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    z-index: 3;
}

.stat-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    min-width: 150px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-color);
    font-weight: 500;
}

/* Products Section */
.products {
    padding: 6rem 0;
    background: var(--background);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.product-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    padding-top: 125%; /* 4:5 aspect ratio */
    overflow: hidden;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-info h3 {
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--light-text);
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: #f9f9f9;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    padding-top: 3rem;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial cite {
    color: var(--primary-color);
    font-weight: 600;
}

.testimonial-image {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--secondary-color);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Founder's Message */
.founder-message {
    padding: 6rem 0;
    background: var(--primary-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.message-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.message-content h2 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.message-content cite {
    display: block;
    margin-top: 2rem;
    font-style: normal;
    color: var(--secondary-color);
}

.founder-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.founder-image img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

.founder-image:hover img {
    transform: scale(1.1);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--gradient);
    color: white;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    padding: 4rem 0;
    background: #1a1a1a;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .navbar {
        padding: 0.8rem 0;
    }

    .nav-links {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .hero-grid,
    .founder-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .statement-box {
        padding: 1rem;
    }
    
    .statement-box p {
        font-size: 1rem;
    }
    
    .crown-icon {
        font-size: 1.5rem;
        min-width: 30px;
    }

    .about-grid,
    .mission-grid {
        grid-template-columns: 1fr;
    }

    .about-images,
    .image-stack {
        height: 400px;
        margin: 2rem 0;
    }

    .about-img.main,
    .stack-img.front {
        width: 100%;
        height: 300px;
    }

    .about-img.overlay,
    .stack-img.back {
        width: 80%;
        height: 250px;
    }

    .mission-stats {
        position: relative;
        left: 0;
        transform: none;
        margin-top: 2rem;
        flex-direction: column;
        gap: 1rem;
    }

    .stat-box {
        width: 100%;
    }
}

/* Animations */
.animate__animated {
    animation-duration: 1s;
}

[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Additional Animation Classes */
.fade-in {
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Effects */
.feature, .testimonial {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover, .testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Decorative Shapes */
.shape {
    position: absolute;
    z-index: 0;
}

.shape.dots {
    background-image: radial-gradient(var(--secondary-color) 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.1;
    width: 300px;
    height: 300px;
}

.shape.crown {
    width: 200px;
    height: 200px;
    background: var(--gradient);
    opacity: 0.1;
    clip-path: polygon(50% 0%, 80% 30%, 100% 30%, 100% 70%, 80% 70%, 50% 100%, 20% 70%, 0% 70%, 0% 30%, 20% 30%);
}

.shape.wave {
    width: 100%;
    height: 100px;
    background: var(--gradient);
    opacity: 0.1;
    clip-path: polygon(100% 0%, 0% 0%, 0% 100%, 25% 70%, 50% 100%, 75% 70%, 100% 100%);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 3rem 0;
}

.gallery-item {
    position: relative;
    padding-top: 100%;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1100;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
}

.policy-content {
    margin-top: 2rem;
}

.policy-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.policy-content h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-size: 1.3rem;
}

.policy-content h4 {
    color: var(--text-color);
    margin: 1.5rem 0 0.5rem;
    font-size: 1.1rem;
}

.policy-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.policy-content ul,
.policy-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 1.5rem;
        width: 95%;
    }

    .close-modal {
        right: 1rem;
        top: 1rem;
    }

    .policy-content h2 {
        font-size: 1.8rem;
    }

    .policy-content h3 {
        font-size: 1.2rem;
    }
}

/* Custom Scrollbar for Modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #6a2670;
}

/* Designer Credit */
.designer-credit {
    text-align: center;
    padding: 1rem;
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.designer-credit a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.designer-credit a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.designer-credit a:hover {
    color: var(--secondary-color);
}

.designer-credit a:hover::after {
    width: 100%;
}

.designer-credit .heart {
    display: inline-block;
    animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
    75% { transform: scale(1.1); }
    100% { transform: scale(1); }
} 