@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --primary-color: #f8f9fa;
    --accent-color: #d4af37;
    --text-color: #2d3436;
    --bg-color: #ffffff;
    --dark-bg: #1a1a1a;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-color);
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: transparent;
    position: absolute;
    width: 100%;
    z-index: 100;
    padding: 30px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #2d3436;
    /* Dark color for white background hero */
    text-decoration: none;
    letter-spacing: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    background: #f8f9fa;
    /* Light gray background for white tshirt */
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.main-hero-img {
    max-width: 80%;
    max-height: 80vh;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    opacity: 0;
    transform: scale(0.95);
    animation: zoomIn 1s forwards 0.3s;
}

.hero-content {
    flex: 1;
    padding: 0 5%;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.8s;
    color: #ddd;
}

.price-tag {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.9s;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 1.1s;
}

.btn:hover {
    background-color: #bfa02e;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Product Story */
.story {
    padding: 150px 0;
    text-align: center;
    background: #ffffff;
}

.story h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--dark-bg);
}

.story p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #666;
}

/* Features */
.features {
    padding: 100px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    align-items: center;
}

.feature-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.feature-text h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--accent-color);
}

/* Design Details */
.design-details {
    padding: 150px 0;
    background: var(--dark-bg);
    color: white;
}

.design-head {
    text-align: center;
    margin-bottom: 80px;
}

.design-head h2 {
    font-size: 3rem;
}

.detail-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.color-palette-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.color-swatch {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: transparent;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.color-swatch:hover {
    transform: scale(1.2);
    color: white;
    font-weight: bold;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Specs & Size Guide */
.specs {
    padding: 150px 0;
}

.size-table-wrapper {
    overflow-x: auto;
    margin: 50px auto 20px;
    max-width: 800px;
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.size-table th {
    background: var(--primary-color);
    padding: 20px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.1rem;
}

.size-table td {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.size-table tr:hover {
    background-color: #fcfcfc;
}

.size-note {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

.care-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.care-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #555;
    font-size: 0.9rem;
}

.care-item span {
    font-size: 2rem;
}

/* Footer */
footer {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    display: block;
    color: var(--dark-bg);
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .detail-grid {
        flex-direction: column;
        text-align: center;
    }
}

/* Image Grid Styles */
.image-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .image-grid-container {
        grid-template-columns: 1fr !important;
    }
}