body {
    background-color: #bdbdbd;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #eaeaea;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    position: relative;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
    background: url('https://media.glamourmagazine.co.uk/photos/64072e4aae6e261fbdde7ec6/master/w_1600%2Cc_limit/HM%2520ISLA%2520HENNES%2520070323%25201017-Innovation-A4-PR-Landscape-Image-300ppi_1.jpg') no-repeat center center;
    background-size: cover;
    background-position: center top;
}

header .logo {
    position: absolute;
    top: 20px;
    left: 20px;
}

header .logo img {
    height: 50px;
}

header nav {
    position: absolute;
    top: 20px;
    right: 20px;
}

header .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

header .nav-links li {
    margin: 0;
}

header .nav-links li a {
    color: #786c6c;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

header .nav-links li a:hover {
    color: #ff4b4b;
}

header .hero {
    text-align: center;
    color: white;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

header .hero h1 {
    font-size: 4rem;
    margin-bottom: 10px;
}

header .hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
}

main {
    padding: 40px 10%;
}

#collections {
    text-align: center;
    margin-bottom: 60px;
    margin-top: 20px;
}

#video {
    display: flex;
    justify-content: left; /* Centers the flex container horizontally */
    align-items: center; /* Centers the content vertically */
    padding: 20px 0;
}

.video-container {
    display: flex;
    justify-content: space-between; /* Aligns items to the left and right */
    align-items: center;
}

.video-container iframe {
    margin-right: 90px; /* Space between the video and text */
}

.video-text {
    max-width: 500px; /* Optional: Limit the width of the text area */
}

.video-text h3 {
    margin-bottom: 10px;
    font-size: 1.5rem; /* Adjust as needed */
}

.video-text p {
    font-size: 1rem; /* Adjust as needed */
    color:rgba(0, 0, 0, 0.9)
}


#collections h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    margin-top: 20px;
    color: #000000;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    position: relative;
    width: 300px; /* Set the desired width */
    height: 300px; /* Set the height to maintain a 1:1 ratio */
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
    margin: 20px auto; /* Centers the card horizontally */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7); /* Initial shadow */
    transition: box-shadow 0.3s ease; /* Smooth transition on hover */
}

.card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.9); /* Darker shadow on hover */
}



.card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the card area */
}



.shop-now {
    display: inline-block;
    padding: 1px 20px;
    background-color: #f5f5f5;
    color: rgb(9, 9, 9);
    text-decoration: none;
    border-radius: 3px;
    font-size: 0.9rem;
    position: absolute;
    bottom: 5px;
    right: 5px;
    transition: background-color 0.3s;
}

.shop-now:hover {
    background-color: #b5b5b5;
}

footer {
    background-color: #333;
    padding: 40px 0;
    border-top: 2px solid #555;
    color: #eaeaea;
}

.footer-container {
    display: flex;
    justify-content: space-between; /* Distributes space between sections */
    align-items: flex-start; /* Aligns sections to the top */
    max-width: 1200px; /* Optional: Limit the width of the footer */
    margin: 0 auto; /* Centers the container horizontally */
    padding: 0 20px; /* Optional padding for better spacing */
}

#contact, #help {
    display: flex;
    flex-direction: column; /* Aligns content vertically */
}

.contact-links, .help-links {
    display: flex;
    flex-direction: column; /* Aligns links vertically */
    gap: 10px;
}

.contact-links {
    margin-bottom: 20px; /* Space below the contact links */
}

.social-icon {
    width: 24px; /* Adjust icon size */
    height: 24px;
    margin-right: 10px; /* Space between icons */
    display: inline-block;
}

.help-links a {
    color: #eaeaea;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.help-links a:hover {
    color: #ff4b4b;
}

/* Align social icons horizontally */
.contact-links {
    flex-direction: row; /* Change direction to row */
    flex-wrap: wrap; /* Allows wrapping if needed */
    gap: 10px; /* Space betwe


.social-icon {
    width: 40px; /* Adjust the size as needed */
    height: 40px;
    margin: 0 15px; /* Space between icons */
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.1); /* Slightly enlarges the icon on hover */
}
