@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;700&family=Playfair+Display:wght@700&display=swap');

body {
    font-family: 'Quicksand', sans-serif;
    background-color: #000000;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

header {
    width: 100%;
    text-align: center;
}

.header-image {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.subtitle {
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    max-width: 550px;
    margin: 30px auto;
    line-height: 1.5;
}

.divider {
    border: 0;
    height: 1px;
    background-color: #ffffff;
    margin: 40px auto;
    width: 80%;
}

.intro-text {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin: 30px 0 20px;
    line-height: 1.6;
}

.arrow-container {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(145deg, #C99A30, #FEF1A2);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.arrow {
    display: block;
    font-size: 28px;
    margin-top: 0;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cards-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.product-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 1px solid #333;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(201, 154, 48, 0.2);
    border-color: #C99A30;
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(145deg, #C99A30, #FEF1A2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 15px 15px 0 0;
}

.card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.location-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: #FEF1A2;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.card-content {
    padding: 30px;
    text-align: left;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #FEF1A2;
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-description {
    font-size: 16px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.card-highlights {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
}

.highlight {
    font-size: 14px;
    color: #C99A30;
    font-weight: 500;
}

.card-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(145deg, #C99A30, #FEF1A2);
    color: #000;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(201, 154, 48, 0.3);
}

.card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 154, 48, 0.4);
    background: linear-gradient(145deg, #FEF1A2, #C99A30);
}

.card-button svg {
    transition: transform 0.3s ease;
}

.card-button:hover svg {
    transform: translateX(3px);
}

@media (min-width: 768px) {
    .cards-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .product-card {
        height: fit-content;
    }
}

@media (max-width: 767px) {
    .cards-container {
        gap: 20px;
    }
    
    .product-card {
        max-width: 100%;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .card-description {
        font-size: 14px;
    }
    
    .card-button {
        padding: 12px 20px;
        font-size: 14px;
    }
}

.about-me {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #ffffff;
}

.about-text {
    flex: 1;
    text-align: left;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    background: linear-gradient(145deg, #C99A30, #FEF1A2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #C99A30;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image {
    flex-basis: 380px;
    flex-shrink: 0;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
}

@media (min-width: 769px) {
    .about-image {
        padding-top: 60px;
    }
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 50px;
    padding-bottom: 50px;
}

.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.social-icon img {
    height: 28px;
    width: auto;
    transition: opacity 0.3s ease;
}

.social-icon:hover img {
    opacity: 0.7;
}

footer {
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
    border-top: 1px solid #ffffff;
    font-size: 12px;
    color: #ffffff;
}

footer p {
    margin: 5px 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-me {
        flex-direction: column;
        text-align: center;
        margin-top: 60px;
        padding-top: 30px;
    }

    .about-text {
        text-align: center;
    }

    .about-text h2 {
        font-size: 32px;
    }

    .about-image {
        width: 100%;
        max-width: 350px;
        margin-top: 20px;
    }
}