body {
    margin: 0;
    padding: 0;
    min-height: 100vh; 
    display: flex;
    flex-direction: column;
}
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1em 2em;
    position: absolute;
    width: 100%;
    z-index: 10;
}

header .logo img {
    width: 350px;
    margin: -50px;
    filter: brightness(10000%) grayscale(100%);
}



nav {
    display: flex;
    justify-content: center;
    gap: 1.5em; 
    padding: 1em;
    background: #ffffff00;
    position: relative;
}

nav a {
    color: rgb(255, 255, 255); 
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    position: relative;
}


header .logo img {
    width: 350px;
    margin: -50px;
}

.cart-icon {
    width: 24px;
    height: 24px;
}
 

.nav-item {
    position: relative;
    display: inline-block;
}



.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border: 1px solid #ddd;
    width: 150px;
    z-index: 1000;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
}



.dropdown a {
    font-weight: normal; 
    text-shadow: none; 
    color: #051661; 
}

.dropdown a:hover {
    background-color: #051661;
    color: white;
}

.nav-item:hover .dropdown {
    display: block;
}

.dropdown a {
    white-space: nowrap;
    padding: 0.5em;
}





.section {
    height: 100vh;
    width: 100%;
  
    display: flex;
    align-items: center;
    justify-content: center;
}






.landing-page {
    background-image: url('../images/homebg1.jpg'); 
    background-size: cover;
    background-position: center;
    height: 100vh; 
    display: flex;
    align-items: center;
    color: #fff;
    padding: 2em;
}

.lp-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.lp-text { 
    flex: 1;
    padding-right: 2em;
    text-align: right;
}

.lp-text h2 {
    font-size: 3rem;
    color: white;
    background-color: rgba(0, 0, 0, 0); 
    padding: 0.5em;
    border-radius: 5px;
}

.lp-image {
    flex: 1;
    max-width: 700px;
    padding: 1em;
    display: flex;
    justify-content: center;
}

.lp-image img {
    width: 100%;
    border-radius: 70px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.carousel {
    position: relative;
    overflow: hidden; 
    width: 100%;
    height: 100vh; 
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 300%; 
    gap: 3000px; 
    
}

.lp-content {
    width: 100vw; 
    height: 100vh; 
    flex-shrink: 0; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-inner {
    display: flex;
    gap: 100px; 
    transition: transform 0.5s ease-in-out;
}

.lp-content {
    min-width: 100vw; 
    flex-shrink: 0; 
    display: flex;
    align-items: center;
    justify-content: space-between; 
    padding: 0 2rem;
}

.lp-text,
.lp-image {
    flex-basis: 45%; 
}
.lp-image img {
    max-width: 100%;
}
.carousel-dots {
    position: absolute;
    bottom: 150px; 
    left: 270px; 
    display: flex;
    gap: 10px;

}

.dot {
    width: 38px; 
    height: 38px;
    background-color: rgb(130, 130, 130);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); 
}

.dot.active {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); 
}


.shop-section {
    background-color: #0b2545;
    color: #fff;
    padding: 2em;
    height: 100vh;
    padding-left: 30px;
    display: flex;
    
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
}

.shop-content {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    width: 100%;
    max-width: 1200px;
    gap: 2em;
}


.shop-text {
    display: grid;
    grid-template-rows: auto 1fr auto; 
    gap: 1.5em; 
    justify-items: center; 
    width: 100%; 
    padding-bottom: 4em;
}



.shop-text h2 {
    font-size: 5.3rem; 
    padding-top: .5em;
    color: white;
    grid-row: 1;
    margin: 0;
    text-align: left;
    
}


.shop-text p {
    font-size: 1.8rem; 
    line-height: 1.6;
    color: white;
    grid-row: 2; 
    margin: 0;
    width:80%;
    text-align: left;
}
.button-link {
    text-decoration: none;  
}

.shop-text .button {
    padding: 1em 2em; 
    font-size: 1.5rem;
    background-color: #ffffff;
    color: #000000;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    grid-row: 3;
    justify-self: center; 
    align-self: start; 
    margin-top: -1em; 

 
}


.shop-images {
    display: flex;
    flex-direction: column;

    align-items: center;
}

.shop-images img {
    width: 70%; 
    height: auto;
    max-height: 45vh; 
    object-fit: cover;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


.upcoming{
    height: 1300px;
    background: url(../images/homebg2.jpg);
    background-size: cover;
    background-position: center;
}

.upcoming-section {
    display: flex;
    border-radius: 30px;
    overflow: hidden;
    background-color: white;
    margin: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-left: 100px;
    margin-right: 100px;
    height: 500px;
    margin-top: 60px;
    position: relative;
}

.image-upcoming {
    flex: 1; 
    display: flex; 
    align-items: center; 
    height: 100%; 
}

.image-upcoming img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    border-radius: 0 30px 30px 0; 
}

.text-upcoming {
    flex: 1;
    padding: 2rem;
    font-family: catamaran;
    color: #333;
}
.ubutton {
    padding: 1em 2em;
    font-size: 1.5rem;
    background-color: #ffffff;
    color: #000000;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: absolute; 

    left: 50%; 
    transform: translateX(-50%); 
}

.footer {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 2rem;
    color:#051661;
    position: absolute; 
    bottom: 0; 
    padding-top:10rem;
    width: 100%; 
    height: 300px; 
    z-index: 100; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.footer-content {
    max-width: 1800px;
    margin: 0 auto;
    display: flex; 
    justify-content: space-between;
    width: 100%;
}

.footer-text {
    flex: 1; 
    text-align: left; 
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.5);
    font-size: 16pt;
    
}

.footer-logo {
    flex: 0 0 auto;
}

.footer-logo {
    width: 350px; 
    height: auto; 
}