/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: #f5f5dc;
    color: #333333;
    line-height: 1.8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Welcome Section */
.welcome-section {
    padding: 60px 0;
    background-color: #f5f5dc;
}

.welcome-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.welcome-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.welcome-text {
    font-size: 48px;
    font-weight: 300;
    color: #333333;
    font-style: italic;
    text-align: center;
}

.logo-small {
    display: flex;
    justify-content: center;
}

.logo-circle-small {
    width: 150px;
    height: 150px;
    border: 3px solid #000000;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.logo-circle-small::before {
    content: '';
    position: absolute;
    width: 130px;
    height: 130px;
    border: 2px solid #000000;
    border-radius: 50%;
}

.logo-text-script {
    font-family: 'Brush Script MT', cursive;
    font-size: 20px;
    color: #000000;
    text-align: center;
    z-index: 1;
    position: relative;
}

.logo-text-small {
    font-size: 12px;
    color: #666666;
    font-style: italic;
    margin-top: 5px;
    z-index: 1;
    position: relative;
}

.welcome-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.logo-large {
    display: flex;
    justify-content: flex-end;
}

.logo-circle-large {
    width: 200px;
    height: 200px;
    border: 3px solid #000000;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    position: relative;
}

.logo-circle-large::before {
    content: '';
    position: absolute;
    width: 170px;
    height: 170px;
    border: 2px solid #000000;
    border-radius: 50%;
}

.logo-text-script-large {
    font-family: 'Brush Script MT', cursive;
    font-size: 28px;
    color: #000000;
    text-align: center;
    z-index: 1;
    position: relative;
}

.logo-text-small-large {
    font-size: 14px;
    color: #666666;
    font-style: italic;
    margin-top: 5px;
    z-index: 1;
    position: relative;
}

.intro-text-block {
    max-width: 600px;
}

.red-line {
    width: 100px;
    height: 3px;
    background-color: #cc0000;
    margin-bottom: 20px;
}

.intro-title {
    font-size: 32px;
    font-weight: bold;
    color: #cc0000;
    margin-bottom: 25px;
    font-family: Arial, sans-serif;
}

.intro-content {
    font-size: 16px;
    color: #333333;
    line-height: 1.8;
}

.intro-content p {
    margin-bottom: 20px;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.products-title {
    font-size: 36px;
    font-weight: bold;
    color: #8b0000;
    text-align: center;
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
}

.products-divider {
    width: 200px;
    height: 2px;
    background-color: #cccccc;
    margin: 0 auto 30px;
}

.products-description {
    font-size: 16px;
    color: #333333;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.products-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.showcase-item {
    text-align: center;
}

.showcase-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 4px;
    margin-bottom: 15px;
}

.showcase-1 {
    background-image: url('https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

.showcase-2 {
    background-image: url('https://images.unsplash.com/photo-1605100804763-247f67b3557e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

.showcase-3 {
    background-image: url('https://images.unsplash.com/photo-1603561591411-07134e71a2a9?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

.showcase-label {
    font-size: 12px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.team-name {
    font-size: 24px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
}

.team-text {
    font-size: 16px;
    color: #333333;
    line-height: 1.8;
}

.team-text p {
    margin-bottom: 20px;
}

/* Sponsored Section */
.sponsored-section {
    padding: 80px 0;
    background-color: #f5f5dc;
}

.sponsored-title {
    font-size: 32px;
    font-weight: bold;
    color: #228b22;
    text-align: center;
    margin-bottom: 40px;
    font-family: Arial, sans-serif;
}

.sponsored-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.sponsored-image {
    width: 100%;
}

.basketball-image {
    width: 100%;
    height: 400px;
    background-image: url('https://images.unsplash.com/photo-1518611012118-696072aa579a?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    border: 2px solid #228b22;
}

.sponsored-text {
    font-size: 16px;
    color: #333333;
    line-height: 1.8;
}

.sponsored-text p {
    margin-bottom: 20px;
}

/* Main Layout */
.main-layout {
    padding: 80px 0;
    background-color: #ffffff;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
}

.left-column {
    /* Empty spacer column */
}

.right-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Product Display */
.product-display {
    padding: 30px;
    background-color: #ffffff;
    text-align: center;
}

.product-display.product-dark {
    background-color: #2c2c2c;
    color: #ffffff;
}

.product-image-large {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 4px;
    margin-bottom: 20px;
}

.product-tees {
    background-image: url('https://images.unsplash.com/photo-1603561591411-07134e71a2a9?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

.product-category {
    font-size: 20px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-dark .product-category {
    color: #ffffff;
}

.product-divider {
    width: 100%;
    height: 1px;
    background-color: #ffffff;
    margin: 20px 0;
}

.shop-now-btn {
    padding: 12px 30px;
    background-color: #cc0000;
    color: #ffffff;
    border: none;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.shop-now-btn:hover {
    background-color: #aa0000;
}

/* Product Detail */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.product-detail-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 4px;
}

.product-necklace {
    background-image: url('https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

.product-placeholder {
    background-color: #2c2c2c;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
}

.product-placeholder::before {
    content: 'PRODUCT IMAGE';
}

.product-detail-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-detail-name {
    font-size: 24px;
    font-weight: bold;
    color: #000000;
}

.product-detail-price {
    font-size: 32px;
    font-weight: bold;
    color: #000000;
}

.add-to-cart-btn {
    padding: 15px 30px;
    background-color: #cc0000;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.add-to-cart-btn:hover {
    background-color: #aa0000;
}

.product-actions {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.wishlist-link,
.share-link {
    color: #666666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.wishlist-link:hover,
.share-link:hover {
    color: #cc0000;
}

/* Responsive Design */
@media (max-width: 968px) {
    .welcome-layout {
        grid-template-columns: 1fr;
    }
    
    .products-showcase {
        grid-template-columns: 1fr;
    }
    
    .sponsored-content {
        grid-template-columns: 1fr;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .product-detail {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .welcome-text {
        font-size: 36px;
    }
    
    .intro-title {
        font-size: 24px;
    }
    
    .products-title,
    .sponsored-title {
        font-size: 28px;
    }
    
    .logo-circle-large {
        width: 150px;
        height: 150px;
    }
    
    .logo-circle-small {
        width: 120px;
        height: 120px;
    }
}
