body {
    background-color: black;
    color: white;
    font-family: "Montserrat", sans-serif;
    font-style: normal
}

:root {
  --primary-color: #7a0000;
  --secondary-color: #fed150;
  --tertiary-color: #d55597;
  --accent-color: #872b68;
  --background-color: #d55557;
  --text-color: #55d5d3;
  --accent:#22d3ee;
  --radius:14px;
  --shadow:0 10px 25px rgba(0,0,0,.3);
  --w:320px;
}

@font-face {
  font-family: 'The Seasons';
  font-style: normal;
  font-weight: normal;
  src: local('The Seasons'), url('Fontspring-DEMO-theseasons-lt.otf') format('truetype');
}

/* NAV */
  .toggler{
    position:fixed;
    top:1rem; right:1rem;
    width:60px; height:60px;
    font-size: 3rem;
    display:grid; place-items:center;
    border:0; border-radius:12px;
    background:var(--brand);
    color:#fff; cursor:pointer;
    /* box-shadow:var(--shadow); */
    /* transition:transform .15s ease, background .2s ease; */
    z-index:1001;
  }
  .toggler:hover{ transform:translateY(-1px); }
  .toggler:active{ transform:translateY(0); }
  .toggler:focus-visible{ outline:3px solid var(--accent); outline-offset:3px; }

  /* Overlay */
  .sb-overlay{
    position:fixed; inset:0;
    background:rgba(0,0,0,.7);
    opacity:0; pointer-events:none;
    transition:opacity .2s ease;
    z-index:1000;
  }

  /* Sidebar panel (right) */
  .sidebar{
    position:fixed; top:0; right:0;
    height:100dvh; width:min(var(--w), 90vw);
    background:var(--panel);
    color:var(--text);
    border-top-left-radius:var(--radius);
    border-bottom-left-radius:var(--radius);
    box-shadow:var(--shadow);
    transform:translateX(100%);
    transition:transform .25s ease;
    z-index:1002;
    display:flex; flex-direction:column;
    outline:0;
  }
  .sidebar header{
    display:flex; align-items:center; justify-content:space-between;
    padding:1rem 1rem 0.5rem;
  }
  .sidebar .close{
    background:transparent; border:0; color:var(--text);
    font-size:1.1rem; cursor:pointer; border-radius:10px; padding:.35rem .5rem;
  }
  .sidebar .close:focus-visible{ outline:3px solid var(--accent); outline-offset:3px; }
  .sidebar nav{
    padding:.5rem 1rem 1rem;
    overflow:auto;
  }

  #sb-title {
    font-family: 'The Seasons';
  }

  .sidebar a{
    display:flex; align-items:center; gap:.6rem;
    padding:.65rem .75rem; border-radius:10px; text-decoration:none;
    color: white;
    font-size: 1.5rem;
    /* color: white; transition:background .15s ease, transform .08s ease; */
  }
  .sidebar a:hover{ background:rgba(135, 43, 58, 0.7); }
  .sidebar a:active{ transform:scale(.99); }

  /* Open states (controlled by .is-open on <body>) */
  body.is-open .sidebar{ transform:translateX(0); }
  body.is-open .sb-overlay{ opacity:1; pointer-events:auto; }
  /* Hide toggler when menu is open */
body.is-open .toggler {
  display: none;
}

  /* Motion safety */
  @media (prefers-reduced-motion: reduce){
    .sidebar,.sb-overlay,.toggler{ transition:none !important; }
  }

/* HERO */

.hero {
    /* background-image: url('img/ammhero.png'); */
    height: 100vh;
    /* background-position: right top;
    background-repeat: no-repeat; */
    /* background-size: 75% 100%; */
    /* background-size: 75% auto; */
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
  position: absolute;
  inset: 0;
  background: url("img/ammhero.png") center/cover no-repeat;
  width: 75%;     /* 75% width of container */
  height: 100%;
  right: 0;
  left: auto;
}

.amm-logo {
    max-height: 210px;
    margin-left: 5%;
}

.hero-box {
    background-color: rgba(135, 43, 58, 0.3) !important;
    width: 40%;
    min-width: 700px;
    box-sizing: border-box;
    height: 50vh;
    text-align: center;
    padding: 20px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
}

h1 {
    font-family: 'The Seasons';
    font-size: 6rem;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    
}

h3 {
    font-size: 1.5rem;
    padding: 20px;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.cta-hero-button {
    background-color: var(--primary-color);
    color: white;
    padding: 20px 50px;
    margin: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 0.5rem;
    border: none;
}

/* Tablet Portrait (992px) */
@media (max-width: 992px) {
    .hero::before {
        width: 100%;
        opacity: 0.4;
    }
    
    .amm-logo {
        max-height: 180px;
        margin-left: 50%;
        transform: translateX(-50%);
        position: relative;
        z-index: 2;
    }
    
    .hero-box {
        width: 90%;
        min-width: unset;
        height: auto;
        min-height: 50vh;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 4.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    .cta-hero-button {
        padding: 18px 45px;
        font-size: 1.4rem;
    }
}

/* Mobile Landscape (768px) */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }
    
    .hero::before {
        opacity: 0.3;
    }
    
    .amm-logo {
        max-height: 150px;
        margin: 20px auto;
        position: static;
        transform: none;
    }
    
    .hero-box {
        position: static;
        transform: none;
        width: 100%;
        max-width: 600px;
        height: auto;
        min-height: unset;
        padding: 40px 25px;
        margin: 20px 0;
    }
    
    h1 {
        font-size: 3.5rem;
        line-height: 1.1;
    }
    
    h3 {
        font-size: 1.1rem;
        padding: 15px 10px;
    }
    
    .cta-hero-button {
        padding: 16px 40px;
        font-size: 1.3rem;
    }
}

/* Mobile Portrait (576px) */
@media (max-width: 576px) {
    .hero {
        min-height: 100vh;
        padding: 15px;
    }
    
    .amm-logo {
        max-height: 120px;
        margin: 15px auto;
    }
    
    .hero-box {
        padding: 30px 20px;
        background-color: rgba(135, 43, 58, 0.4) !important;
    }
    
    h1 {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    h3 {
        font-size: 1rem;
        padding: 12px 5px;
        line-height: 1.5;
    }
    
    .cta-hero-button {
        padding: 14px 35px;
        font-size: 1.2rem;
        width: 100%;
        max-width: 300px;
    }
}

/* Small Mobile (400px) */
@media (max-width: 400px) {
    .amm-logo {
        max-height: 100px;
    }
    
    .hero-box {
        padding: 25px 15px;
    }
    
    h1 {
        font-size: 2.3rem;
    }
    
    h3 {
        font-size: 0.95rem;
        padding: 10px 5px;
    }
    
    .cta-hero-button {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
}

/* About Us */

.about {
  margin-top: 10%;
}

.about-header {
  color: white;
  font-size: 2rem;
  font-weight:bold;
  margin-left: 5%;
}

.blue-header {
  color: var(--accent);
  font-size: 3rem;
  font-family: 'The Seasons';
  text-align: left;
}

.about-text {
  padding: 20px;
}

.about-text p {
  color: white;
  font-size: 1.2rem;
  text-align: left;
}

.about-img {
  padding: 10px;
}

/* Meet our Mixologists */

.meet-section {
  margin-top: 10%;
  width: 100%;
}

.meet-header {
  color: white;
  font-family: 'The Seasons';
  font-size: 4rem;
  text-align: center;
}

/* themes */
.themes-section {
  margin-top: 10%;
  width: 100%;
  padding: 40px 0;
}

.themes-header {
  color: white;
  font-family: 'The Seasons';
  font-size: 4rem;
  text-align: center;
}


        .carousel-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }


        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            padding: 0 80px;
        }

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

        .carousel-item-custom {
            flex: 0 0 calc(33.333% - 14px);
            text-align: center;
        }

        .card-custom {
            background-color: #1a1a1a;
            border: 8px solid #fff;
            overflow: hidden;
            margin-bottom: 15px;
        }

        .card-custom img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            display: block;
        }

        .card-title-custom {
            font-size: 1.5rem;
            margin-bottom: 10px;
            font-weight: 400;
        }

        .card-subtitle-custom {
            font-size: 0.95rem;
            color: #ccc;
            line-height: 1.5;
        }

        .carousel-btn {
            position: absolute;
            top: 40%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            /* background: linear-gradient(135deg, #d9534f 0%, #c9302c 100%); */
            background: var(--background-color);
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-btn:hover {
            background: linear-gradient(135deg, #c9302c 0%, #ac2925 100%);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn.prev {
            left: 10px;
        }

        .carousel-btn.next {
            right: 10px;
        }

        .card-custom.classic {
            background: linear-gradient(135deg, #d9534f 0%, #c9302c 100%);
        }

        .classic {
            color: white;
        }

        .card-title-custom {
          color: var(--background-color);
        }

        @media (max-width: 992px) {
            .carousel-item-custom {
                flex: 0 0 calc(50% - 10px);
            }
        }

        @media (max-width: 576px) {
            .carousel-item-custom {
                flex: 0 0 100%;
            }
            
            .themes-header {
                font-size: 2.5rem;
            }
        }

/* Quote Form Section */
 .quote-form-section {
            
            padding: 60px 20px;
            min-height: 100vh;
        }

        .form-container {
            max-width: 800px;
            margin: 0 auto;
        }

        /* h1 {
            text-align: center;
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-weight: 300;
            letter-spacing: 2px;
        } */

        .subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #ccc;
            margin-bottom: 50px;
            font-style: italic;
        }

        .form-card {
            background-color: #1a1a1a;
            border: 8px solid #fff;
            padding: 50px;
            margin-bottom: 30px;
        }

        .form-label {
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: #fff;
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        .form-control,
        .form-select {
            background-color: #2a2a2a;
            border: 2px solid #444;
            color: #fff;
            padding: 12px 15px;
            font-size: 1rem;
            border-radius: 4px;
            font-family: 'Georgia', serif;
            transition: all 0.3s ease;
        }

        .form-control:focus,
        .form-select:focus {
            background-color: #333;
            border-color: #d9534f;
            color: #fff;
            box-shadow: 0 0 0 0.2rem rgba(217, 83, 79, 0.25);
        }

        .form-control::placeholder {
            color: #888;
        }

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

        .row-custom {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 25px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .submit-btn {
            width: 100%;
            padding: 15px;
            font-size: 1.3rem;
            background: linear-gradient(135deg, #d9534f 0%, #c9302c 100%);
            border: none;
            color: white;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Georgia', serif;
            letter-spacing: 1px;
            margin-top: 20px;
        }

        .submit-btn:hover {
            background: linear-gradient(135deg, #c9302c 0%, #ac2925 100%);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(217, 83, 79, 0.4);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        .required {
            color: #d9534f;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }

            .form-card {
                padding: 30px 20px;
                border-width: 5px;
            }

            .row-custom {
                grid-template-columns: 1fr;
            }
        }

        /* Custom select arrow */
        .form-select {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
        }

        option {
            background-color: #2a2a2a;
            color: #fff;
        }