@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Caprasimo&family=Pacifico&family=Permanent+Marker&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.5;
    color: #333;
    background: #1a1a1a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */

header {
    /* background: linear-gradient(135deg, #ff6b35, #f7931e); */
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    /* box-shadow: 0 2px 20px rgba(0,0,0,0.3); */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo-image {
    width: 100px;
    height: 100px;
    border-radius: .5rem;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    margin-left: -3rem;
}

.logo-image:hover {
    transform: scale(1.1);
    border-color: rgba(255,255,255,0.8);
}

.logo-text {
    font-family: "Pacifico", cursive;
    font-style: normal;
    color: #f9c64b;
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: rgb(210, 4, 45);
    margin-top: .5rem;
    font-size: 1.4rem;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f9c64b;
    transition: width 0.3s ease;
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width:768px) {
    .logo-image {
        width: 75px;
        height: 75px;
        margin-left: 1px;
    }

    .logo-text {
      font-size: 1.4rem;
      display: block;
      margin-left: -1rem;
    }
    
    .menu-toggle {
        color: rgb(210, 4, 45);
        margin-top: -.5rem;
        margin-right: 12rem;
        font-size: 2.3rem;
        display: block;
        position: relative;
        z-index: 1100;
    }
      
        .nav-links {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: #20528e;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transform: translateX(-100%);
            transition: transform 0.3s ease-in-out;
            z-index: 1000;
          }
          
          .nav-links.active {
            transform: translateX(0);
          }
          
          .nav-links a {
            font-size: 2rem;
            margin: 1.5rem 0;
            color: #f9c64b;
            text-decoration: none;
          }
      
        nav {
          justify-content: space-between;
        } 
   }

   @media (max-width:480px) {
    .logo-image {
        width: 75px;
        height: 75px;
        margin-left: 1px;
    }

    .logo-text {
      font-size: 1.4rem;
      display: block;
      margin-left: -1rem;
    }
    
    .menu-toggle {
        color: rgb(210, 4, 45);
        margin-top: -.5rem;
        margin-right: 7rem;
        font-size: 2.3rem;
        display: block;
        position: relative;
        z-index: 1100;
    }
      
        .nav-links {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: #20528e;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transform: translateX(-100%);
            transition: transform 0.3s ease-in-out;
            z-index: 1000;
          }
          
          .nav-links.active {
            transform: translateX(0);
          }
          
          .nav-links a {
            font-size: 2rem;
            margin: 1.5rem 0;
            color: #f9c64b;
            text-decoration: none;
          }
      
        nav {
          justify-content: space-between;
        } 
   }



/* Hero Section */

.hero {
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), 
                url('images/hyphyburger1.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}


@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.hero-content {
    z-index: 2;
    position: relative;
}

.hero h1 {
    font-family: "Caprasimo", serif;
    font-style: bold;
    text-align: center;
    letter-spacing: 2px;
    font-size: 4rem;
    line-height: 1.2;
    color: #f9c64b;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    animation: slideInUp 1s ease-out;
}

.hero span {
    color: #20528e;
}

.hero .hero-span {
    color: rgb(210, 4, 45);
}

.hero p {
    font-family: "Caprasimo", serif;
    font-size: 3.5rem;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    animation: slideInUp 1s ease-out 0.3s both;
}

.cta-button {
    display: inline-block;
    border: 2px solid rgb(210, 4, 45);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: .5rem ;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    animation: slideInUp 1s ease-out 0.6s both;
}

.cta-button:hover {
   background-color:#f9c64b;;
}

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


@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        background-position: left center; /* This shifts the image to the right */
        height: auto;
        padding: 4rem 1rem;
    }

    .hero h1 {
        margin-top: 5rem;
        font-size: 2.5rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 0.75rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero {
        background-attachment: scroll;
        background-position: left center; /* This shifts the image to the right */
        height: auto;
        padding: 4rem 1rem;
    }

    .hero h1 {
        margin-top: 5rem;
        font-size: 2.5rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 0.75rem 1.25rem;
    }
}

/* Sections */

section {
    padding: 80px 0;
}

.section-title {
    font-family: "Caprasimo", serif;
    font-style: bold;
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #f9c64b;
    text-transform: uppercase;
    letter-spacing: 2px;
}


/* About Section */

.about {
    background: #20528e;
    color: white;
}

.about-text {
    font-size: 1.3rem;
    line-height: 1.5;
    text-align: center;
    color: bisque;
}

.about-span {
    color: rgb(210, 4, 45);
}

.about-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .about-image {
    width: 85%;
    height: 35rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    margin-left: 5rem;
    margin-top: 2rem;
  }
  
  @media (max-width: 768px) {
    .about-content {
      flex-direction: column;
      text-align: center;
    }
  
    .about-image {
      height: 30rem;
      width: 40rem;
      margin-top: 1.5rem;
      margin-left: -2rem;
    }
  
    .about-text {
      font-size: 1.2rem;
      padding: 0 1rem;
      margin-left: 2rem;
      margin-right: 3rem;
    }

    .about h2 {
        font-size: 3rem;
    }

    .about-span {
        font-size: 3rem;
    }

  }

  @media (max-width: 480px) {
    .about-content {
      flex-direction: column;
      text-align: center;
    }
  
    .about-image {
      width: 100%;
      height: auto;
      margin-top: 1.5rem;
      margin-left: 0;
    }
  
    .about-text {
      font-size: 1.1rem;
      padding: 0 1rem;
    }

    .about h2 {
        font-size: 2.5rem;
    }

    .about-span {
        font-size: 2.5rem;
    }

  }


@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}
  
.menu-section {
    margin-bottom: 4rem;
}

.menu .burgers {
  
    margin-top: 6rem;
}

.menu .combos {
    margin-top: 7rem;
}

.menu-section h3 {
    font-size: 2rem;
    color: #f9c64b;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    position: relative;
}

.menu-section h3::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: rgb(210, 4, 45);
    margin: 0.5rem auto;
}


/* Menu Section */

.menu-title {
    font-family: "Caprasimo", serif;
    font-style: bold;
    margin-bottom: 3rem;
    text-align: center;
    font-size: 3rem;
    color: rgb(210, 4, 45);
}

.menu {
    background: #f8f8f8;
    padding: 4rem 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.menu .hyphy-burgers {
    background-color: #20528e;
    color: white;
}

.menu-item .hyphy-burger {
    color: white;
}

.menu .burnout-burgers {
    background-color: rgb(210, 4, 45);
    color: white;
}

.menu-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.menu-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-color: #f9c64b;
}

.menu-item h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.menu-item p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.6;
}

.price {
    font-size: 1.3rem;
    font-weight: bold;
    color: white;
}


/* Combo specific styling */

.combos .menu-item .combo-item {
    color: rgb(210, 4, 45);
}

.hyphy-combo-item {
    background: #20528e;
    border-left: 5px solid #f9c64b;
}

.hyphy-combo-item:hover {
    border-color: rgb(210, 4, 45);
    border-left-color: #f9c64b;
}

.burnout-combo-item {
    background: rgb(210, 4, 45);
    border-left: 5px solid #f9c64b;
}

.burnout-combo-item:hover {
    border-color: rgb(210, 4, 45);
    border-left-color: #f9c64b;
}

.combo-savings {
    background:#f9c64b;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 0.5rem;
}


/* Fries */

.menu-section .fries .hyphy-fries-m {
    background-color: #f9c64b;
    padding: 1.5rem;
    border-radius: 8px;
    color: #fff;
    text-align: center;
  }
  
  .hyphy-fries-m .fry-sizes {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap; 
  }
  
  .fry-size {
    max-width: 200px;
  }
  
  .price {
    font-weight: bold;
    margin-top: 0.5rem;
  }
  

/* Drinks */

.menu .drinks {
    margin-top: 7rem;
}

.drinks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.drink-item {
    background: rgb(210, 4, 45);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.drink-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.drink-item h4 {
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
}

.drink-item p {
    color: white;
    font-size: 1.5rem;
    margin-bottom: .5rem;
}

.size-options {
    display: flex;
    justify-content: space-around;
    margin-top: 1rem;
}

.size-option {
    text-align: center;
}

.size-option .price {
    font-size: 1.5rem;
}


/* Shakes */

.menu .shakes {
    margin-top: 7rem;
}

.shakes .menu-item {
    background: #20528e;
}


/* Videos */

.video-section {
    padding: 60px 0;
    background: #20528e;
}

.video-section-title {
    font-family: "Caprasimo", serif;
    font-style: bold;
    text-align: center;
    font-size: 2.5rem;
    letter-spacing: 1px;
    margin-bottom: 3rem;
    color:#e3a71c;
}

.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.video-item {
    margin-top: 2rem;
    background: transparent;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    background-color: transparent;
    color: #e3a71c;
    padding: 2rem;
}

.video-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #e3a71c;
}

.video-description {
    color: beige;
    font-size: 1.2rem;
    line-height: 1.4;
}

.featured-video {
    grid-column: 1 / -1;
    max-width: 800px;
    margin: 0 auto 40px;
}

.featured-video .video-container {
    padding-bottom: 45%; /* Wider aspect ratio for featured */
}

.featured-video .video-title {
    font-size: 1.5rem;
    text-align: center;
}

.featured-video .video-description {
    text-align: center;
    font-size: 1.2rem;
}


@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 3rem;
        margin-bottom: 30px;
    }

    .video-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-item {
        margin-bottom: 20px;
    }

    .video-info {
        padding: 15px;
    }

    .video-title {
        font-size: 1.2rem;
    }

    .video-description {
        font-size: 1.2rem;
    }

    .featured-video .video-container {
        padding-bottom: 56.25%; 
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .video-gallery {
        gap: 15px;
    }

    .video-info {
        padding: 12px;
    }

    .video-title {
        font-size: 1rem;
    }

    .video-description {
        font-size: 1.2rem;
    }
}


/* Gallery */

.gallery-container {
    margin-left: 2rem;
    margin-right: 2rem;
}

.gallery-section-title {
    font-family: "Caprasimo", serif;
    font-style: bold;
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #f9c64b;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.5rem;
    color: rgb(210, 4, 45);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(375px, 1fr));
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    transform: scale(1); /* Ensure default state */
}

.gallery-item:hover {
    transform: scale(1.03); /* Slight zoom on hover */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    transform: scale(1); /* Reset image scale */
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1); /* Optional: extra zoom on the image itself */
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.gallery-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}


/* Responsive Design for Gallery */

@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .gallery-item {
        aspect-ratio: 3 / 2;
        border-radius: 12px;
    }
    
    .gallery-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .gallery-overlay {
        padding: 20px;
        transform: translateY(0);
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    }
    
    .gallery-overlay h3 {
        font-size: 1.2rem;
    }
    
    .gallery-overlay p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        aspect-ratio: 1 / 1;
    }
}


.section-title.contact-title {
    color: rgb(210, 4, 45);
}
    
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 50px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.contact-card .location {
    background: rgb(210, 4, 45);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.contact-card h3 {
    color:  #f9c64b;
    margin-bottom: 15px;
    font-size: 1.6rem;
    font-weight: 700;
}

.contact-card p {
    color: white;
    font-size: 1.4rem;
    line-height: 1.5;
    margin: 0;
}

.contact-card a {
    color: rgb(210, 4, 45);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #c0392b;
    text-decoration: underline;
}

.location {
    background-color: #20528e;
    color: white;
}

.email {
    background-color: rgb(210, 4, 45);
    color: white;
}

.email p a {
    color: white;
}

.social-card {
    background: #f9c64b;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-card.social-card h3 {
    color:  #f9c64b;
}

.social-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.social-card:hover::before {
    opacity: 1;
    animation: shimmer 1s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.social-card h3 {
    color:  #f9c64b;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2); /* Button background */
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }
  

  /* Apply gradient text only to the span */

  .social-text {
    background: linear-gradient(
      45deg,
      rgb(131, 58, 180),
      rgb(253, 29, 29),
      rgb(245, 96, 64),
      rgb(252, 175, 69)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* Firefox */
    color: transparent;
  }
  

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: white;
}

.social-icon {
    font-size: 1.4rem;
}

#contact {
    background: #20528e;
    color: white;
}


#contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contact-grid {
    display: flex;
    justify-content: center;     
    align-items: flex-start;
    gap: 1.5rem;                 
    flex-wrap: wrap;
    margin-bottom: 4rem;
    text-align: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin-left: 7.5rem;
    width: 100%;
}


.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 33px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 300px;
    max-width: 400px;
    flex: 1;
}

@media (max-width:768px) {
    .contact-card {
        margin-left: -7.5rem;
    }
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-details {
    text-align: left;
}

.contact-item {
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item strong {
    display: inline-block;
    width: 80px;
    font-weight: 600;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ffd700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hours-grid {
    text-align: left;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item.closed {
    opacity: 0.7;
}

.day {
    font-weight: 600;
}

.time {
    font-weight: 400;
}

.hours-note {
    margin-top: 1rem;
    text-align: center;
    opacity: 0.8;
    font-style: italic;
}

/* Maps */

.map-section {
    text-align: center;
    margin-top: 2rem;
}

.map-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.map-container {
    width: 100%;
    max-width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .contact-grid {
        flex-direction: column;
        align-items: center;
    }

    .contact-card {
        min-width: 280px;
        max-width: 100%;
    }

    #contact h2 {
        font-size: 2rem;
    }

    .map-section h3 {
        font-size: 1.5rem;
    }

    .map-container iframe {
        height: 300px;
    }
}
@media (max-width: 968px) {
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        padding: 20px;
    }

    .contact-icon {
        font-size: 2rem;
    }
    .social-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .social-link {
        justify-content: center;
    }
    
    .map-container iframe {
        height: 300px;
    }
}


/* Footer */

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-image {
    width: 100px;
    height: 100px;
    border-radius: .5rem;
    border: 2px solid #f9c64b;
}

.footer-logo h3 {
    margin: 0;
    font-weight: bold;
}

footer {
    background: #f9c64b;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: rgb(210, 4, 45);
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.footer-section p,
.footer-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #e74c3c;
}

.newsletter {
    background: rgba(155, 145, 13, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(231, 76, 60, 0.2);
}

.newsletter h3 {
    font-family: "Caprasimo", serif;
    margin-bottom: 15px;
}

.newsletter p {
    margin-bottom: 20px;
    color: white;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-brand-section h3 {
    font-size: 2rem;
    margin-top: 1rem;
    font-family: "Caprasimo", serif;
    font-style: bold;
}

.footer-links-section {
    margin-left: 7rem;
    font-family: "Caprasimo", serif;
    font-style: bold;
}

.footer-links-section .footer-links-section h3 {
    font-family: "Caprasimo", serif;
    font-style: bold;
}

.footer-newsletter-section {

}


.newsletter-form input {
    padding: 12px 15px;
    border: 2px solid #34495e;
    border-radius: 8px;
    background: #2c3e50;
    color: white;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #e74c3c;
}

.newsletter-form input::placeholder {
    color: white;
}

.newsletter-btn {
    background: rgb(210, 4, 45);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #95a5a6;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: rgb(210, 4, 45);
    text-decoration: none;
}

@media (max-width:768px) {
    .footer-links-section {
        margin-left: .2rem;
        margin-right: 5rem;
    }
    
}

