@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;600;700&family=Paytone+One&display=swap');



* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-image: url(./images/wallpaper.jpeg);
     background-size: cover;        
    background-position: center;   
    background-repeat: no-repeat;  
    padding: 2rem 2rem 8rem;
    font-family: 'Barlow', sans-serif;
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;

}

/* Header */
header {
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(10px);
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #ffffff1a;
    transition: all 0.3s ease;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 50px;
    width: auto;
}


h1 {
    font-family: 'Paytone One', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

h1 span {
    color: #fff;
}
main{
    flex: 1;
}
.container {
      padding: 25px;
       /* background: #fff; */
      margin: 40px auto; 
      max-width: 450px; 
      border-radius: 12px;
      backdrop-filter: blur(4px); 
      width: 90%;
    }

/* Hero Section */
.hero {
    height: 85vh;
    /* Leave some space for the branch links to peek through */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    position: relative;
    color: #fff;
    background: none !important;
    background-image: none !important;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-family: 'Paytone One', sans-serif;
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px #00000080;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

.hero-cta {
    display: inline-block;
    background-color:#ac0b11;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px #ac0b11;
}

/* About Section */
.about-section {
    padding: 6rem 2rem;
    display: flex;
     flex-direction: column;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-title {
    font-family: 'Paytone One', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #fff;
    font-weight: bolder;
}

/* Branch Section */
.branch-section {
     margin: 0;
    height: 100%;
    background-size: cover;        
    background-position: center;   
    background-repeat: no-repeat;  
    padding: 2rem 2rem 8rem;
    /* background-image: url(./images/wallpaper.jpeg);  */
    position: relative;
    z-index: 2;
    margin-top: -10vh;
    /* Pull up to overlap hero slightly or just be close */
}


.section-title {
    text-align: center;
    font-family: 'Paytone One', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

.branch-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.branch-card {
    background: rgba(29, 28, 28, 0.247);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(29, 28, 28, 0.247);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: #fff;
    transition: all var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.branch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, #ed1c241a, transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.branch-card:hover::before {
    transform: translateX(100%);
}

.branch-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.247);
    border-color: var(--primary-red);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.branch-name {
    font-family: 'Paytone One', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color:#ac0b11 ;
}

.branch-location {
    font-size: 1.1rem;

    color: #ac0b11;
    margin-bottom: 2rem;
    font-weight: bolder;
}

.cta-button {
    background-color:#1d1c1c71;
    border: 2px solid #ac0b11;
    color: #ac0b11;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-speed) ease;
}

.branch-card:hover .cta-button {
    background-color:#7a777771 ;
    box-shadow: 0 0 15px #ed1c2480;
}

/* Footer */
.footer {
    height: 0px;
  border-top:1px solid #1111117c ;
  display: flex;
  align-items: center;     
  justify-content: center;  
  position: relative;
  padding: 20px;
  margin-top: auto;
  margin-bottom: 2px;

}

.footer-img {
  position: absolute;
  left: 00px;   
  width: 60px;  
}

.footer-text {
    color: #fff;
    font-weight: bolder;
  text-align: center;  
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .branch-container {
        grid-template-columns: 1fr;
    }

    .branch-card {
        padding: 2rem;
    }

    header {
        padding: 1rem;
    }

    .logo {
        height: 40px;
    }
}