/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo .tagline {
    font-size: 0.85rem;
    color: #7a8471;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #d4a574;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 20px 50px;
    background: linear-gradient(135deg, #fefefe 0%, #f8f6f0 50%, #e8f5e8 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-logo {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    }

    100% {
        filter: drop-shadow(0 6px 12px rgba(212, 165, 116, 0.3));
    }
}

.hero-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #7a8471;
    margin-bottom: 0.5rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #333 0%, #d4a574 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-button {
    background: linear-gradient(135deg, #d4a574 0%, #c49660 100%);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(212, 165, 116, 0.4);
}

/* Hero Product Showcase */
.product-showcase {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-product-img {
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    filter: brightness(1.05) saturate(1.1);
}

.main-product {
    width: 300px;
    height: auto;
    z-index: 3;
    position: relative;
    animation: productFloat 4s ease-in-out infinite;
}

.secondary-product {
    width: 200px;
    height: auto;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    opacity: 0.85;
    animation: productFloat 4s ease-in-out infinite 1s;
}

.tertiary-product {
    width: 150px;
    height: auto;
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 1;
    opacity: 0.7;
    animation: productFloat 4s ease-in-out infinite 2s;
}

@keyframes productFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

.hero-product-img:hover {
    transform: translateY(-15px) scale(1.08) rotate(5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* Products Section */
.products {
    padding: 100px 0;
    background: #fefefe;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4a574, #7a8471, #d4a574);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 165, 116, 0.3);
}

.product-image {
    width: 220px;
    height: auto;
    margin: 0 auto 2rem;
    border-radius: 25px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    filter: brightness(1.02) saturate(1.05);
}

.product-card:hover .product-image {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    filter: brightness(1.1) saturate(1.15);
}

.product-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.product-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-features span {
    background: #f8f6f0;
    color: #7a8471;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f6f0 0%, #fefefe 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #d4a574;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Brand Card */
.brand-card {
    width: 400px;
    height: 250px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f6f0 100%);
    border-radius: 25px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(212, 165, 116, 0.2);
    transition: all 0.4s ease;
}

.brand-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border-color: rgba(212, 165, 116, 0.4);
}

.brand-card-logo-main {
    width: 120px;
    height: auto;
    z-index: 4;
    position: relative;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.card-content {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.card-tagline {
    color: #7a8471;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card-background-img {
    position: absolute;
    opacity: 0.15;
    transition: all 0.3s ease;
}

.card-bg-1 {
    width: 80px;
    height: auto;
    top: 15px;
    right: 15px;
    z-index: 1;
    animation: cardFloat1 6s ease-in-out infinite;
}

.card-bg-2 {
    width: 60px;
    height: auto;
    bottom: 60px;
    left: 15px;
    z-index: 1;
    animation: cardFloat2 6s ease-in-out infinite 2s;
}

.card-bg-3 {
    width: 70px;
    height: auto;
    top: 50%;
    right: 20px;
    z-index: 1;
    animation: cardFloat3 6s ease-in-out infinite 4s;
}

@keyframes cardFloat1 {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.15;
    }

    50% {
        transform: translateY(-10px) rotate(5deg);
        opacity: 0.25;
    }
}

@keyframes cardFloat2 {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.15;
    }

    50% {
        transform: translateY(-8px) rotate(-3deg);
        opacity: 0.2;
    }
}

@keyframes cardFloat3 {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.15;
    }

    50% {
        transform: translateY(-12px) rotate(8deg);
        opacity: 0.3;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #fefefe;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-info p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-item {
    margin-bottom: 1rem;
    color: #666;
}

.contact-item strong {
    color: #333;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #d4a574;
}

.contact-form button {
    background: linear-gradient(135deg, #d4a574 0%, #c49660 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    filter: brightness(1.2);
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer-logo p {
    color: #ccc;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.5;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #d4a574;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(90deg, #d4a574, #7a8471);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #d4a574;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-contact p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-contact p:first-child {
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
    font-size: 0.9rem;
}

.zanck-link {
    color: #d4a574;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.zanck-link:hover {
    color: #c49660;
    text-decoration: underline;
}

.zanck-link {
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .logo {
        gap: 0.5rem;
    }

    .logo-img {
        height: 35px;
    }

    .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-logo {
        height: 60px;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .main-product {
        width: 240px;
    }

    .secondary-product {
        width: 160px;
        top: 15px;
        right: 15px;
    }

    .tertiary-product {
        width: 120px;
        bottom: 30px;
        left: 30px;
    }

    .product-image {
        width: 180px;
    }

    .brand-card {
        width: 320px;
        height: 200px;
    }

    .brand-card-logo-main {
        width: 80px;
    }

    .card-bg-1 {
        width: 60px;
    }

    .card-bg-2 {
        width: 45px;
    }

    .card-bg-3 {
        width: 50px;
    }

    .stats {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-logo {
        align-items: center;
    }

    .footer-section {
        text-align: center;
    }

    .footer-links a:hover {
        transform: translateX(0);
    }
}

@media (max-width: 480px) {
    .hero-logo {
        height: 50px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .main-product {
        width: 200px;
    }

    .secondary-product {
        width: 130px;
        top: 10px;
        right: 10px;
    }

    .tertiary-product {
        width: 100px;
        bottom: 20px;
        left: 20px;
    }

    .product-image {
        width: 150px;
    }

    .brand-card {
        width: 280px;
        height: 180px;
    }

    .brand-card-logo-main {
        width: 70px;
    }

    .card-bg-1 {
        width: 50px;
        top: 10px;
        right: 10px;
    }

    .card-bg-2 {
        width: 35px;
        bottom: 40px;
        left: 10px;
    }

    .card-bg-3 {
        width: 40px;
        right: 15px;
    }

    .stats {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}