* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: 1s;
}


/* Navbar */

header {
    position: relative;
    width: 100%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: black;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: 1s;
}

.navbar.scrolled {
    padding: 1rem 5%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

.logo-container h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(99, 3, 48);
    margin-left: 1rem;
}

.logo-container h1:hover {
    color: wheat;
    transition: 1s;
}

.logo-img {
    border-radius: .5rem;
    width: 60px;
    height: auto;
    background-color: rgb(99, 3, 48);
    padding: 5px; 
}

.logo-img:hover {
    color: wheat;
    transition: 1s;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
}

.nav-links li {
    margin-left: 2rem;
    position: relative;
}

.nav-links a {
    color: rgb(99, 3, 48);
    font-weight: 600;
    font-size: 1.2rem;
    position: relative;
    padding: .5rem 0;
}

.nav-links a:hover {
    color: wheat;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: black;
    transition: 1s;
}

.nav-links a:hover {
    color: white;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background-color: black;
    color: rgb(99, 3, 48);
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    margin-left: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.nav-cta:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    color: white;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #333;
}

.mobile-menu {
    display: flex; /* Always flex, not none */
    flex-direction: column;
    background-color: white;
    width: 100%;
    position: fixed;
    top: 70px;
    left: 0;
    padding: 1rem 0;
    z-index: 999;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none; /* Prevent interaction when hidden */
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto; /* Allow interaction when visible */
}

.mobile-menu a {
    padding: 1rem 2rem;
    color: #333;
    font-weight: 500;
    border-bottom: 1px solid #f1f1f1;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    background-color: #fff0f0;
    color: #ff6b6b;
    padding-left: 2.5rem;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-cta {
    background-color: black;
    color: white !important;
    margin: 1rem 2rem;
    text-align: center;
    padding: 1rem !important;
    border-radius: 30px;
    font-weight: 600;
    border: none !important;
}

@media (max-width:768px) {
    .hamburger {
        display: block;
        color: rgb(99, 3, 48);
        font-size: 2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu {
        display: flex;
    }
}


/* Hero */

.hero-section {
    height: 100vh;
    width: 100%;
    display: flex;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.hero-image {
    width: 60%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    right: 0;
    top: 0;
}

.hero-content {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5%;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 60%, rgba(255, 255, 255, 0));
    position: relative;
    z-index: 2;
}

.hero-tagline {
    font-size: 1.2rem;
    font-weight: 500;
    color: rgb(99, 3, 48);
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeUp 0.8s forwards 0.2s;
}

.hero-title {
    width: 25rem;
    font-size: 3.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    opacity: 0;
    animation: fadeUp 0.8s forwards 0.4s;
}

.hero-title span {
  color: rgb(99, 3, 48);
}

.hero-description {
    color: black;
    line-height: 1.8;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    width: 25.5rem;
    opacity: 0;
    animation: fadeUp 0.8s forwards 0.6s;
}

.btn {
    padding: 1rem 2rem;
    border-radius: .5rem;
    font-weight: 600;
    font-size: 1.2rem;
    transition: 1s;
    border: none;
    cursor: pointer;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    opacity: 0;
    animation: fadeUp 0.8s forwards 0.8s;
}

.hero-buttons .btn-primary {
    padding: 1.5rem 2rem; 
    font-size: 1.2rem;
}

.hero-buttons .btn-primary:hover {
    background-color: #333;
    color:rgb(99, 3, 48);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}


.hero-buttons .btn-secondary {
    border: 2px solid black;
    background-color: transparent;
    padding: 1.5rem 2rem; 
    font-size: 1.2rem;
}

.hero-buttons .btn-secondary:hover {
    background-color: #333;
    color:rgb(99, 3, 48);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}


/* Animations */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Responsive Design */

@media screen and (max-width: 1100px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-content {
        width: 60%;
    }
}

@media screen and (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-menu {
        display: flex;
    }

    .hero-image {
        width: 100%;
        height: 100%;
        opacity: 0.3;
        object-position: center;
    }

    .hero-content {
        width: 100%;
        background: none;
        align-items: center;
        text-align: center;
        padding: 0 10%;
    }

    .hero-description {
        max-width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .navbar {
        padding: 1rem 5%;
    }

    .logo-container h1 {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Menu */

.menu {
    background-color: rgb(99, 3, 48);
    padding: 6rem 2rem 2rem;
    position: relative;
    isolation: isolate;
    min-height: 100vh;
    overflow: hidden;
}

.menu::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: calc(50% - 450px);
    background-color: black;
    z-index: -1;
}

.menu::after {
    content: "Caked Up";
    position: absolute;
    top: 50%;
    right: -8rem;
    transform: translateY(-50%) rotate(-270deg);
    color: white;
    letter-spacing: 10px;
    font-size: 5rem;
    white-space: nowrap;
    z-index: 0;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.menu-header {
    text-align: center;
    margin-bottom: 4rem;
}

.menu-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-link {
    display: inline-block;
    margin-top: 1rem;
}

.view-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.view-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.view-link:hover::before {
    left: 100%;
}

.view-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.2);
}

.view-link i {
    transition: 1s;
}

.view-link:hover i {
    transform: translateX(5px);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 2fr));
    column-gap: 0.5rem;
    row-gap: 1rem;
    padding: 2rem 0;
    justify-items: center;
}

.menu-card {
    /* background: rgba(255, 255, 255, 0.95); */
    backdrop-filter: blur(20px);
    /* border: 1px solid rgba(255, 255, 255, 0.3); */
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    width: 100%;
    margin-left: -5rem; 
    max-width: 380px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05);
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
    opacity: 0;
    transition: 1s;
}

.menu-card:hover::before {
    opacity: 1;
}

.menu-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.1);
}

.menu-img-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    height: 280px; 
}

.menu-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-card:hover .menu-img {
    transform: scale(1.1);
}

.menu-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-card:hover .menu-img-overlay {
    opacity: 1;
}

.menu-card-content {
    padding: 2rem;
    background-color: white;
    position: relative;
}

.menu-info {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: .75rem;
    line-height: 1.3;
}

.menu-description {
    font-size: .95rem;
    color: #718096;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.menu-price-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-price {
    font-size: 1.5rem;
    font-weight: 800;
    background: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.add-to-cart {
    padding: .75rem 1.5rem;
    background: black;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: 1s;
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .9rem;
}

.add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-circle:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-circle:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-circle:nth-child(3) {
    width: 40px;
    height: 40px;
    top: 30%;
    left: 60%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .menu {
        padding: 4rem 1rem;
    }
    .menu-card {
        margin-left: .5rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .menu::after {
        display: none;
    }
}


/* Book */

.book {
    margin-block: 5rem;
    background-image: url(booking.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex; 
    justify-content: center; 
    align-items: center; 
    min-height: 100vh;
    margin-top: -1rem;
}

.book-container {
    display: flex;
    justify-content: center; 
    align-items: center; 
    width: 100%; 
}

.book .book-title {
    text-align: center;
}

.book-container form {
    max-width: 600px;
    padding: 1rem;
    display: grid;
    margin-top: -20rem;
    gap: 2rem;
    background-color: rgba(0, 0, 0, 0.9);
    transform: translateY(10rem);
    width: 100%; 
}

.book-container h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.book-container .input-row {
    display: grid;
    gap: 1rem;
}

.book-container .input-group {
    display: grid;
    gap: 10px;
}

.book-container label {
    margin-bottom: -.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
}

.book-container input {
    padding: .75rem 1rem;
    font-size: 1rem;
    color: white;
    background-color: rgba(255,255,255, 0.1);
    border: none;
    outline: none;
}

.book-btn {
    font-size: 1.3rem;
    padding: 1rem 2rem;
    background-color: rgb(99, 3, 48);
    color: black;
    border: none;
    outline: none;
}


/* Gallery */

.cakedup-gallery {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.unique-layout {
    display: grid;
    grid-template-areas:
      "item1 item1 item2"
      "item3 item4 item2"
      "item3 item5 item6";
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    margin-left: .5rem;
    margin-right: .5rem;
  }
  
  .item1 { grid-area: item1; }
  .item2 { grid-area: item2; }
  .item3 { grid-area: item3; }
  .item4 { grid-area: item4; }
  .item5 { grid-area: item5; }
  .item6 { grid-area: item6; }
  
  .grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }
  
  .grid-item img:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  }
  

/* About */

.about-container {
    display: flex;
    margin-top: 5rem;
    flex-direction: row-reverse; 
    gap: 2rem; 
    overflow: hidden;
}

.about-img {
    height: 350px;
    width: 350px;
}

.about-image img {
    display: block;
    margin: 0 auto;
    padding-right: 2rem;
}

.about-content .about-title {
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
}

.about-main-content {
    margin-left: 5rem;
    border-left: 2px solid black;
}

.about-content p {
    font-size: 1.2rem;
    margin-left: 5rem;
    margin-right: 7rem;
    margin-bottom: 1rem;
    color: black;
    line-height: 2rem;
}

.about-btn {
    margin-left: 5rem;
    padding: 1rem 2rem;
    background-color: black;
    color: white;
    border-radius: .5rem;
    border: none;
    outline: none;
}

@media (max-width: 768px) {
    .about-container {
      flex-direction: column;
      align-items: center;
    }
  
    .about-main-content,
    .about-content p,
    .about-btn {
      margin-left: 1rem;
      margin-right: 1rem;
      border-left: none;
    }
  
    .about-content .about-title {
      text-align: center;
    }
    .about-image {
        margin-left: 2.1rem;
    }
  
    .about-img {
      width: 100%;
      max-width: 375px;
      height: auto;
    }
  }
  

/* Contact */

.hero {
    background-image: linear-gradient(rgba(99, 3, 48), rgba(99, 3, 48)), url('/api/placeholder/1200/400');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: black;
}

.hero h1 {
    font-size: 3rem;
    margin-top: 3rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px 0;
}

.contact-info {
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: rgb(99, 3, 48);
}

.info-item {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.info-item i {
    width: 30px;
    color: rgb(99, 3, 48);
    font-size: 1.2rem;
}

.info-item .content {
    flex: 1;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.info-item p {
    color: #666;
    line-height: 1.5;
}

.social-links {
    display: flex;
    margin-top: 30px;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgb(99, 3, 48);
    color: white;
    border-radius: 50%;
    margin-right: 15px;
    text-decoration: none;
    transition: transform 0.3s, background-color 0.3s;
}

.social-links a:hover {
    transform: translateY(-5px);
    background-color: #5a3733;
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.booking-section {
    margin-bottom: -1rem;
    background-color: rgb(99, 3, 48);
    padding: 60px 0;
}

.booking-container {
    text-align: center;
}

.booking-container h2 {
    font-size: 2rem;
    color: rgb(99, 3, 48);
    margin-bottom: 30px;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.btn {
    background-color: rgb(99, 3, 48);
    color: black;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #5a3733;
}


/* Footer */

.footer {
    position: relative;
    background: black;
    color: rgb(99, 3, 48);
    padding: 0;
    margin-bottom: -4rem;
    width: 100%;
}

.footer-wave {
    position: relative;
    height: 100px;
    width: 100%;
    overflow: hidden;
}

.footer-wave svg {
    position: absolute;
    width: 100%;
    height: 100px;
    top: 0;
    bottom: 0;
    left: 0;
}

.footer-content {
    padding: 0 2rem 1rem;
    max-width: 1200px;
    margin: 2rem auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;

}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1rem;
}

.logo i {
    font-size: 2rem;
    color: rgb(99, 3, 48);
}

.logo h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: rgb(99, 3, 48);
}

.footer-brand p {
    font-size: 1.1rem;
    margin-top: -1.5rem;
    margin-bottom: -2rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgb(99, 3, 48);;
    color: black;
    text-decoration: none;
    transition: 1s;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.social-links a:hover {
    transform: translateY(-3px);
    background-color: rgb(99, 3, 48);
    color: #fff;
    box-shadow: 0 5px 15px rgba(231, 111, 81, 0.3);
}

.footer-col .newsletter-form .form-group .fa-paper-plane {
    color: black;
    font-size: 1.2rem;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgb(99, 3, 48);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: .5rem;
}

.footer-col h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: rgb(99, 3, 48);
}

.footer-col p {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.footer-col i {
    color: rgb(99, 3, 48);
    width: 2.5rem;
}

.footer-explore {
    margin-left: 3rem;
}

.footer-menu {
    font-size: 1.2rem;
    margin-left: 3rem;
    list-style: none;
}

.footer-menu li {
    margin-bottom: .8rem;
    font-size: 1.2rem;
}

.footer-menu a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 1.1rem;
    transition: 1s;
    position: relative;
    padding-left: 1rem;
}

.footer-menu a::before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgb(99, 3, 48);
    transition: 1s;
}

.footer-menu a:hover {
    color: #333;
    padding-left: 1.2rem;
}

.newsletter-form .form-group {
    display: flex;
    margin-top: 1rem;
    max-width: 100%;
}

.newsletter-form input {
    flex: 1;
    padding: .8rem 1rem;
    border: none;
    border-radius: 5px 0 0 5px;
    outline: none;
    font-family: inherit;
    font-size: 0.9rem;
}

.newsletter-form button {
    background-color: rgb(99, 3, 48);
    border: none;
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 1s;
}

.newsletter-form button:hover {
    background-color: #333;
}

.footer-bottom {
    border-top: 1px solid rgba(74, 74, 74, 0.1);
    padding-top: 1.5rem;
    margin-top: 1rem;
    text-align: center;
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #4a4a4a;
    text-decoration: none;
    transition: 1s;
}

.footer-links a:hover {
    color: #333;
}

.copyright {
    color: #4a4a4a;
}

#back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: rgb(99, 3, 48);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    box-shadow: 0 3px 10px rgba(231, 111, 81, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: 1s;
    z-index: 1000;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background-color: #333;
    transform: translateY(-3px);
}


@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-info {
        grid-template-columns: 1fr;
    }
    
    .footer-col {
        margin-bottom: 2rem;
    }
    
    .footer-col:last-child {
        margin-bottom: 0;
    }

    .footer-explore {
        margin-left: -.5rem;
    }
    .footer-menu {
        margin-left:-.5rem;
        list-style-type: none;
        text-decoration: none;
       
    }
    
}


.footer::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    /* background-image: radial-gradient(#fff 1px, transparent 1px); */
    background-size: 20px 20px;
    opacity: 0.3;
    pointer-events: none;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.social-links a:hover i {
    animation: bounce 0.5s ease infinite;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-menu.show {
        display: flex;
    }
}


