* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    color: #222;
    overflow-x: hidden;
    background-color: #f8f8f8;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    background-color: #000;
}

.video-container:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.2) contrast(1.1);
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
}

header.scrolled {
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.8);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.company-name {
    margin-left: 15px;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 1.5px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.company-name:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.company-name:hover:after {
    width: 100%;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
    position: relative;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
    padding: 5px 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: #fff;
}

nav ul li a:hover:after {
    width: 100%;
}

.icons-container {
    display: flex;
    align-items: center;
}

.icon {
    font-size: 20px;
    cursor: pointer;
    margin-left: 25px;
    color: #fff;
    transition: transform 0.3s ease, color 0.3s ease;
}

.icon:hover {
    transform: scale(1.2);
    color: #f5f5f5;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
    color: #fff;
    position: relative;
    z-index: 1;
    box-shadow: none;
}

.headline {
    font-size: 64px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 40px;
    max-width: 800px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.3s;
}

.tagline {
    font-size: 64px;
    font-weight: 300;
    line-height: 1.2;
    font-style: italic;
    margin-bottom: 60px;
    max-width: 800px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.6s;
}

.cta-button {
    display: inline-block;
    border: 1px solid #fff;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    transition: all 0.3s ease;
    max-width: 400px;
    text-align: center;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.9s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: all 0.4s ease;
    z-index: -1;
}

.cta-button:hover {
    color: #000;
}

.cta-button:hover:before {
    left: 0;
}

.pause-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: #fff;
    transition: all 0.3s ease;
}

.pause-btn:hover {
    background-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.section {
    padding: 100px 10%;
    position: relative;
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.6s ease;
    margin-bottom: 0;
}

.section-title {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: 2px;
    position: relative;
    animation: fadeIn 1s ease-out;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #222;
}

#featured {
    background-color: #f9f9f9;
    position: relative;
    box-shadow: none;
    border-top: 1px solid rgba(0,0,0,0.05);
}

#collections {
    background-color: #fff;
    position: relative;
}

#about {
    background: linear-gradient(to right, #f7f7f7, #eaeaea);
    position: relative;
}

#featured:before {
    content: none;
}

.featured-product {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.featured-product:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.product-image {
    width: 50%;
    /* height: 500px; */
    background-color: #f2f2f2;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-product:hover .product-image img {
    transform: scale(1.05);
}

.product-details {
    width: 50%;
    padding: 50px;
}

.product-title {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.product-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #222;
}

.product-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #666;
}

.product-price {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 40px;
}

.shop-button {
    display: inline-block;
    background-color: #222;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.shop-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #000;
    transition: all 0.4s ease;
    z-index: -1;
}

.shop-button:hover:before {
    left: 0;
}

.collections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.collection-item {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.collection-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.collection-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-item:hover img {
    transform: scale(1.1);
}

.collection-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.collection-item:hover .collection-title {
    transform: translateY(-10px);
}

.newsletter {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 80px 10%;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(45deg, #222222 25%, #2a2a2a 25%, #2a2a2a 50%, #222222 50%, #222222 75%, #2a2a2a 75%, #2a2a2a 100%);
    background-size: 10px 10px;
}

.newsletter:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.9), rgba(0,0,0,0.6));
    z-index: -1;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    position: relative;
    z-index: 1;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background-color: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.newsletter-input:focus {
    background-color: rgba(255,255,255,0.2);
    outline: none;
}

.newsletter-button {
    padding: 15px 30px;
    border: none;
    background-color: #fff;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.newsletter-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    transition: all 0.4s ease;
    z-index: -1;
}

.newsletter-button:hover:before {
    left: 0;
}

footer {
    background-color: #111;
    color: #fff;
    padding: 80px 10% 40px;
    position: relative;
    overflow: hidden;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #111, #000);
    z-index: -1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: #555;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-column ul li a:before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: all 0.3s ease;
    opacity: 0;
}

.footer-column ul li a:hover {
    color: #fff;
    padding-left: 10px;
}

.footer-column ul li a:hover:before {
    width: 5px;
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #333;
    color: #aaa;
    font-size: 14px;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .headline, .tagline {
        font-size: 48px;
    }
    
    .featured-product {
        flex-direction: column;
    }
    
    .product-image, .product-details {
        width: 100%;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }
    
    nav ul {
        display: none;
    }
    
    .collections {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .headline, .tagline {
        font-size: 36px;
    }
    
    .collections {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input {
        margin-bottom: 10px;
    }
} 