:root {
    --service-bg-light: #ffffff;
    --service-text-light: #1a1a1a;
    --service-text-dark: #ffffff;
    --accent-color: #0D47A1;
    --service-item-color: #1e293b;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section Styles */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.7); /* Darken the image */
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    width: 50%;
    text-align: left;
    margin-left: 5%;
    background-color: rgba(0, 0, 0, 0.5); /* Add a dark overlay */
    border-radius: 10px;
}

.hero-title {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: white;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.hero-button:hover {
    background-color: #ddd;
}

/* Denim Collection Section Styles */
.denim-collection-section {
    padding: 40px 20px;

    color: #eee; /* Lighter text */
}

.section-title {
    font-size: 2.5em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: #fff; /* White title */
}

.collection-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
[data-theme="dark"] .collection-item {
    background: var(--service-item-color);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.05);
}
.collection-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1); /* White shadow */
    background: linear-gradient(45deg, #0ea5e9, #3b82f6, #6366f1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2); /* Brighter shadow on hover */
}

.card {
    border: 1px solid #555; /* Darker border */
}

.left-aligned {
    flex-direction: row;
    text-align: left;
}

.right-aligned {
    flex-direction: row-reverse;
    text-align: left;
}

.collection-image {
    width: 45%; /* Increased image size */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1); /* White shadow */
    transition: transform 0.3s ease;
}

.collection-image:hover {
    transform: scale(1.05); /* Scale up on hover */
}

.collection-text {
    width: 50%;
    padding: 20px;
}

.collection-title {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff; /* White title */
}

.collection-description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ddd; /* Lighter description text */
}

.collection-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #64b5f6; /* Lighter blue */
    color: #212121; /* Dark text */
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.collection-button:hover {
    background-color: #90caf9; /* Even lighter blue */
    color: #000; /* Black text */
}

/* Fade-in Animation */
.fade-in-element {
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeSlideIn 1s forwards;
}

@keyframes fadeSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* Alternating Section Styles */




/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 10px;
    }

    .hero {
        align-items: flex-start;
    }

    .hero-content {
        width: 90%;
        margin-left: 5%;
        padding: 10px;
        margin-top: 95px;
    }

    .hero-title {
        font-size: 2.5em;
    }

    .hero-subtitle {
        font-size: 1em;
    }

    .collection-grid {
        gap: 20px; /* Reduced gap */
    }

    .collection-item {
        flex-direction: column;
        text-align: center;
        padding: 10px; /* Reduced padding */
    }

    .left-aligned,
    .right-aligned {
        flex-direction: column;
    }

    .collection-image {
        width: 80%; /* Make images larger */
        margin: 0 auto 10px;
    }

    .collection-text {
        width: 100%;
        padding: 10px;
    }

    .collection-title {
        font-size: 1.2em;
    }

}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero, .alternating-section {
    animation: fadeIn 1s ease-out;
}

.denim-collection-section {
    animation: fadeIn 1s ease-out;
}

.collection-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
}
/* Alternating Section Styles */
.alternating-section {
    padding: 50px 20px;
}

.alternating-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.alternating-row {
    display: flex;
    margin-bottom: 30px;
}

.alternating-col {
    width: 50%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.alternating-col-left {
    /* Styles for the left column */
}

.alternating-col-right {

    color: #000; /* Black text */
    padding: 30px;
}

.alternating-title {
    font-size: 2.0em;
    font-weight: bold;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #0077b6, #00b4d8);
}

.alternating-description {
    font-size: 1.1em;
    line-height: 1.6;
}

.alternating-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Reversed Row Styling */
.alternating-row.reversed {
    flex-direction: row-reverse;
}

.alternating-row.reversed .alternating-col-left {


    padding: 30px;
}

.alternating-row.reversed .alternating-col-right {
   background-color: transparent;  }

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .alternating-row {
        flex-direction: column;
    }

    .alternating-row.reversed {
        flex-direction: column; /* reset to default */
    }

    .alternating-col {
        width: 100%;
        padding: 15px;
    }

    .alternating-col-right,
    .alternating-row.reversed .alternating-col-left {
        padding: 20px;
    }

    .alternating-image {
        margin-top: 20px;
    }

    /* Ensure image is always on top on small screens */
    .alternating-row:not(.reversed) .alternating-col-left {
        order: -1; /* Forces image to top */
    }
}
