/* General Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #0a0a0a; /* Slightly darkened background for depth */
    color: white;
    height: 100%;
    overflow-x: hidden; /* Prevent horizontal scroll */
    line-height: 1.6;
    /* scrollbar-gutter: stable; */
}

/* Navbar styling */
.navbar {
    background-image: linear-gradient(to right, rgb(123, 3, 159), rgb(46, 1, 98));
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    font-family: 'PT Sans', sans-serif;
    letter-spacing: 2px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.navbar-brand:hover {
    color: #f0f0f0;
    transform: scale(1.1); /* Slight scale on hover for brand */
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin-left: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.75em;
    font-family: 'Fjord One', serif;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff0066; /* Highlight color */
    transform: translateY(-5px); /* Slight hover animation */
}

#current-page {
    color: #ff0066;
}

#contact {
    margin-top: 50px;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    background: url('your-image-path.jpg') no-repeat center center/cover;
}

@keyframes hero-background {
    0% { background-position: center; }
    100% { background-position: 60% 40%; }
}

/* Circular Logo Container */
.logo-container {
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: auto;
    box-shadow: 0 0 15px rgba(255, 0, 102, 0.5); /* Subtle shadow for depth */
}

.logo-container:hover {
    transform: scale(1.1); /* Smooth scale on hover */
    box-shadow: 0 10px 30px rgba(255, 0, 102, 0.7); /* Enhanced shadow on hover */
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.logo-container:hover .logo {
    transform: scale(1.15); /* Enlarged logo on hover */
}

/* Learn More Button Inside the Logo */
.learn-more-btn {
    position: absolute;
    bottom: 20px;
    background-color: #ff0066;
    color: black;
    border: none;
    border-radius: 25px;
    padding: 15px 30px;
    font-size: 1.25rem;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(255, 0, 102, 0.5);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #ff3399;
    color: white;
    box-shadow: 0 10px 40px rgba(255, 0, 102, 0.7);
    transform: translateY(-5px); /* Subtle lift on hover */
}

/*About Styles*/
.aboutColumns{
    font-family: "PT Sans", sans-serif, Arial;
    background: radial-gradient(closest-side,#4e2b5d, #0a0a0a);
    font-size: 1.2em;
    margin-top: 1%;
    margin-bottom: 1%;
    padding-top: 1%;
    padding-bottom: 1%;
    padding-right: 2%;
    padding-left: 2%;
}

.text-justify{
    text-align: justify;
}

.aboutColumns img{
    border-radius: 20px;
}

.aboutColumns h2{
    font-family: 'Fjord One', serif;
}

.hideText {
    display: none;
    text-align: justify;
    margin-top: 10px;
}

.hover-effect:hover .hideText {
    display: block;
}

/*Tour Styles*/
table {
    width: 94%; /* Keeps full width */
    border-collapse: collapse; /* Prevents double borders */
    margin: 1% 3% 0 3%;
}
.btn {
    background-color: #4880ad; /* Dark reddish-purple */
    color: white;
    font-family: 'Fjord One', serif;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s; /* Smooth transition for hover */
}

.btn:hover {
    background-color: #7a304b; /* Lighter reddish-purple on hover */
}
th, td {
    border: 1px solid #ddd; /* Keeps border visible */
    padding: 8px; /* Keeps consistent padding */
    text-align: left;
    width: auto; /* Prevents cell size changes */
}

/* Light purple for odd-numbered rows */
tr:nth-child(odd) td { 
    background-color: #2e0d46; /* Light Purple */
}

/* Light black for even-numbered rows */
tr:nth-child(even) td { 
    background-color: #070707; /* Light Black */
    color: white; /* Ensures text remains visible */
}

  .map-container {
    width: 94%;
    max-width: 100%;
    overflow: hidden;
    margin: 0 3%;
  }

.map-container iframe {
    width: 100%; /* Makes the iframe responsive */
    height: 500px; /* Adjust height as needed */
    border: 0;
}

/* Merch Styles*/
.cart-container{
    width: 70%;
    font-family: 'Fjord One', serif;
    max-width: 90vw;
    margin: auto;
    text-align: center;
    padding: 1%;
    transition: transform .5s;
}

svg{
    width: 30px;
}

header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

header .icon-cart{
    position: relative;
}

header .icon-cart span{
    display: flex;
    width: 30px;
    height: 30px;
    background-color: red;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: -20px;
}

.listProduct .item img{
    width: 90%;
}

.listProduct{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.listProduct .item{
    background-color: #191620;
    padding: 20px;
    border-radius: 20px;
}

.listProduct .item h2{
    font-weight: 500;
    padding-top: 10px;
    font-size: large;
    font-family: 'PT sans', serif;
}

.listProduct .item .price{
    letter-spacing: 2px;
    font-size: 1.2em;
}

.listProduct .item button{
    padding: 5px 10px;
    border-radius: 20px;
    margin-top: 10px;
    border: none;
    cursor: pointer;
}

.cartTab{
    font-family: 'Fjord One', serif;
    width: 385px;
    background-color: #353432;
    color: #eee;
    position: fixed;
    inset: 0 -400px 0 auto;
    z-index: 1000;
    display: grid;
    grid-template-rows: 70px 1fr 70px;
    transition: .5s;
}

body.showCart .cartTab{
    inset: 0 0 0 auto;
}

body.showCart .cart-container{
    transform: translateX(-250px);
}

.cartTab h1{
    margin: 0;
    padding: 20px;
    font-weight: 300;
}

.cartTab .btns{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.cartTab .btns button{
    background-color: yellow;
    border: none;
    font-family: 'Fjord One', serif;
    font-weight: 500;
    cursor: pointer;
}

.cartTab .btns .close{
    background-color: #eee;
}

.cartTab .btns .checkOut {
    padding: 10px 20px;
    font-size: 1rem;
    width: 100%;
}

.cartTab .listCart .item img{
    width: 100%;
}

.cartTab .listCart .item{
    display: grid;
    grid-template-columns: 70px 150px 50px 1fr;
    gap: 10px;
    text-align: center;
    align-items: center;
}

.listCart .quantity span{
    display: inline-block;
    width: 25px;
    height: 25px;
    background-color: #eee;
    color: #555;
    border-radius: 50%;
    cursor: pointer;
}

.listCart .quantity span:nth-child(2){
    background-color: transparent;
    color: #eee;
}

.listCart .item:nth-child(even){
    background-color: #eee1;
}

.listCart{
    overflow: auto;
}

/* Footer Styles */
footer {
    background-color: #111;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

footer a {
    color: white;
    margin: 0 20px;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ff0066;
    transform: scale(1.1); /* Hover effect */
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    color: white;
    font-size: 2.5rem;
    margin: 0 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #ff0066;
    transform: translateY(-5px); /* Hover lift effect */
}

/* Responsive Design */
@media (max-width: 1200px) {
    .navbar {
        padding: 20px 30px;
    }

    .navbar-brand {
        font-size: 2.2rem;
    }

    .nav-item {
        margin-left: 20px;
    }

    .learn-more-btn {
        font-size: 1.1rem;
        padding: 12px 25px;
    }
}

@media (max-width: 992px) {
    .navbar {
        flex-direction: column;
        align-items: center;
        padding: 20px 10px;
    }

    .navbar-brand {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 15px;
    }

    .nav-item {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .learn-more-btn {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .listProduct{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
        padding: 15px;
    }

    .hideText{
        display: block !important;
    }

    .navbar-brand {
        font-size: 1.8rem;
    }

    .nav-item {
        margin-left: 0;
        margin-bottom: 8px;
    }

    .learn-more-btn {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .listProduct{
        grid-template-columns: repeat(2, 1fr);
    }

    footer a {
        font-size: 1.2rem;
    }

    .social-icons a {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .navbar {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    .nav-item {
        margin-left: 0;
        margin-bottom: 8px;
    }
    
    .hideText{
        display: block !important;
    }

    .learn-more-btn {
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    footer a {
        font-size: 1rem;
    }

    .social-icons a {
        font-size: 1.8rem;
    }
}

@media (max-width: 400px) {
    .navbar {
        padding: 10px;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .hideText{
        display: block !important;
    }

    .nav-item {
        margin-left: 0;
        margin-bottom: 6px;
    }

    .learn-more-btn {
        font-size: 0.85rem;
        padding: 7px 12px;
    }

    footer a {
        font-size: 0.9rem;
    }

    .social-icons a {
        font-size: 1.5rem;
    }
}
