/* CSS/STYLES.CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 2rem;
}

.nav-left {
    display: flex;
    align-items: center;
}

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

.logo-icon {
    height: 60px;
    width: auto;
}

.logo {
    height: 40px;
    border-radius: 8px;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
    margin: 0 1rem;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hamburger Animation */
.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-right {
    margin-left: auto;
}

.buy-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: #ffffff;
    text-decoration: none;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav-link:hover {
    color: #4a90e2;
}

/* Hero Section */
.hero-section {
    height: clamp(500px, 70vh, 600px);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    margin-top: 10px;
}

.hero-image-left {
    flex: 1;
    height: 100%;
    position: relative;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

.hero-content-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1.5rem, 4vw, 2rem);
    text-align: left;
}

.hero-text-box {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: clamp(1.5rem, 4vw, 2rem) clamp(1.5rem, 5vw, 2rem);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
    margin: 0 0 0 auto;
}



.hero-logo {
    width: 280px;
    height: auto;
    margin: 0 0 1rem 0;
    display: block;
}

/* Hero Button Container */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* Shop Now Button - Primary CTA */
.shop-button {
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 3px 12px rgba(255, 107, 107, 0.2);
}

.shop-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}

/* Contact Button - Secondary CTA */
.contact-button {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 3px 12px rgba(78, 205, 196, 0.2);
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.3);
}

.hero-text-box h2 {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
    color: #1a1a1a;
    line-height: 1.2;
    font-weight: 600;
}

.hero-text-box p {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    color: #2d2d2d;
    line-height: 1.5;
}

.cta-button {
    background: #333;
    color: white;
    border: none;
    padding: clamp(0.6rem, 2vw, 0.75rem) clamp(1.2rem, 3vw, 1.5rem);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    border-radius: 4px;
    cursor: pointer;
    text-transform: none;
    font-weight: 500;
    letter-spacing: normal;
    text-decoration: none;
    float: right;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #555;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Main Content */
.main-content {
    padding: 3rem 0;
    background: #f8f9fa;
    position: relative;
}

.content-wrapper h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.content-text p {
    margin-bottom: 1.5rem;
    color: #666;
}

/* Featured Product */
.featured-product {
    padding: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.featured-product .container {
    max-width: none;
    padding: 0;
    margin: 0;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-img-large {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.featured-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.featured-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.explore-button {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
}

/* Products Section */
.products-section {
    padding: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.products-section .container {
    max-width: none;
    padding: 0;
    margin: 0;
}

.products-section .hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Custom Designs Section */
.custom-designs {
    padding: 3rem 0;
    background: white;
}

.custom-designs-content h2 {
    text-align: left;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.custom-designs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.custom-design-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.custom-design-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.custom-features {
    list-style: none;
    margin-bottom: 2rem;
}

.custom-features li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
}

.custom-design-button {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.custom-design-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.custom-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.products-section h2 {
    text-align: left;
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.product-image-container {
    position: relative;
}

.product-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
    background: white;
}

.product-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.product-info p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #666;
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #4ecdc4;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-info h3,
.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 600;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group {
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    background: white;
    color: #333;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4ecdc4;
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.submit-button {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    width: 100%;
    font-weight: 500;
    transition: all 0.3s ease;
    float: right;
    width: auto;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (min-width: 1200px) {
    .nav-container {
        gap: 3rem;
    }
    
    .hero-section {
        height: 700px;
        padding: 3rem;
    }
    
    .hero-content {
        max-width: 675px;
    }
    
    .hero-text-box {
        max-width: 525px;
        padding: clamp(3rem, 6vw, 5rem);
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .nav-left {
        flex-direction: row;
        align-items: center;
    }
    
    .logo-container {
        margin-right: 0;
        margin-bottom: 0;
    }
    
    .hamburger-menu {
        display: flex;
        order: 2;
    }

    .nav-links {
        display: none; /* Hide links by default on mobile */
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding: 1.5rem 0;
        background-color: rgba(255, 255, 255, 0.98);
        position: absolute;
        top: 100%; /* Position below the navbar */
        left: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        z-index: 999;
        gap: 1.5rem;
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        font-size: 1.1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background-color: rgba(78, 205, 196, 0.1);
        color: #4ecdc4;
        transform: translateX(5px);
    }
    
    .nav-right {
        order: 3;
    }
    
    /* Mobile Hero Section - Stack vertically */
    .hero-section {
        flex-direction: column;
        height: auto;
        background: none;
        padding: 0;
    }
    
    .hero-image-left {
        order: 2;
        height: 300px;
        width: 100%;
    }
    
    .hero-content-right {
        order: 1;
        width: 100%;
        padding: 0;
        background: white;
    }
    
    .hero-logo {
        width: 200px;
        height: auto;
        margin: 0 0 1rem 0;
        display: block;
    }
    
    .hero-text-box {
        padding: clamp(1.5rem, 5vw, 2.5rem);
        margin: 0;
        max-width: 100%;
        width: 100%;
        border-radius: 0;
        background: white;
        box-shadow: none;
        border: none;
    }
    
    .hero-text-box h2 {
        font-size: clamp(1.3rem, 5vw, 1.5rem);
        margin-bottom: clamp(0.8rem, 2.5vw, 1rem);
    }
    
    .hero-text-box p {
        font-size: clamp(0.95rem, 3vw, 1rem);
        margin-bottom: clamp(1.2rem, 4vw, 1.5rem);
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 0.75rem;
        margin-top: 1.2rem;
    }
    
    .shop-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .contact-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .featured-product .hero-image {
        min-height: 300px;
    }
    
    .products-section .hero-image {
        min-height: 300px;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .custom-designs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .custom-design-info {
        text-align: center;
    }
}

/* Tablet breakpoint for smooth transitions */
@media (max-width: 600px) {
    .nav-container {
        gap: 1rem;
    }
    
    .hero-section {
        flex-direction: column;
        height: auto;
        background: none;
        padding: 0;
    }
    
    .hero-image-left {
        order: 2;
        height: 300px;
        width: 100%;
    }
    
    .hero-content-right {
        order: 1;
        width: 100%;
        padding: 0;
        background: white;
    }
    
    .hero-text-box {
        max-width: 100%;
        width: 100%;
        padding: clamp(1.8rem, 5vw, 2.2rem);
        border-radius: 0;
        background: white;
        box-shadow: none;
        border: none;
    }
    
    .hero-text-box h2 {
        font-size: clamp(1.4rem, 4.5vw, 1.6rem);
    }
    
    .hero-text-box p {
        font-size: clamp(1rem, 3vw, 1.1rem);
    }
    
    .custom-designs-grid {
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        flex-direction: column;
        height: auto;
        background: none;
        padding: 0;
    }
    
    .hero-image-left {
        order: 2;
        height: 250px;
        width: 100%;
    }
    
    .hero-content-right {
        order: 1;
        width: 100%;
        padding: 0;
        background: white;
    }
    
    .hero-text-box {
        padding: clamp(1.2rem, 6vw, 1.8rem);
        margin: 0;
        max-width: 100%;
        width: 100%;
        border-radius: 0;
        background: white;
        box-shadow: none;
        border: none;
    }
    
    .hero-text-box h2 {
        font-size: clamp(1.2rem, 6vw, 1.4rem);
        margin-bottom: clamp(0.7rem, 3vw, 0.9rem);
    }
    
    .hero-text-box p {
        font-size: clamp(0.85rem, 3.5vw, 0.95rem);
        margin-bottom: clamp(1rem, 4vw, 1.3rem);
        line-height: 1.4;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .shop-button {
        padding: clamp(0.6rem, 3vw, 0.8rem) clamp(1.2rem, 4vw, 1.4rem);
        font-size: clamp(0.85rem, 3.5vw, 0.95rem);
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
    
    .contact-button {
        padding: clamp(0.6rem, 3vw, 0.8rem) clamp(1.2rem, 4vw, 1.4rem);
        font-size: clamp(0.85rem, 3.5vw, 0.95rem);
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
    
    .featured-product .hero-image {
        min-height: 250px;
    }
    
    .products-section .hero-image {
        min-height: 250px;
    }
}