* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    width: 100%;
    height: 100%;
}
#main {
    width: 100vw;
    min-height: 100vh;
    overflow-y: hidden !important;
    scroll-behavior: smooth;
}
::-webkit-scrollbar {
    display: none;
    overflow-x: hidden;
    overflow-y: hidden;
}

/* Header Styles */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 4vw;
    max-width: 100%;
}

.logo img {
    height: 50px;
    width: auto;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-family: 'Anton', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #c71d1d;
}

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

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

.buy-beer-btn {
    padding: 8px 20px;
    font-family: "druk heavy", sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 800;
    color: #fff;
    background-color: rgb(199, 29, 29);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buy-beer-btn:hover {
    background-color: #a01717;
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #333;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav.active {
    max-height: 400px;
}

.mobile-nav-menu {
    list-style: none;
    padding: 1rem 0;
    margin: 0;
}

.mobile-nav-menu li {
    padding: 0.75rem 2rem;
}

.mobile-nav-link {
    text-decoration: none;
    color: #333;
    font-family: 'Anton', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #c71d1d;
}

.mobile-buy-beer-btn {
    margin: 1rem 2rem;
    padding: 10px 20px;
    font-family: "druk heavy", sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 800;
    color: #fff;
    background-color: rgb(199, 29, 29);
    border: none;
    cursor: pointer;
    width: calc(100% - 4rem);
    transition: all 0.3s ease;
}

.mobile-buy-beer-btn:hover {
    background-color: #a01717;
}

/* Footer Styles */
#footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 2rem;
}

.footer-section h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: 1px;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-family: 'Dosis', sans-serif;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #c71d1d;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: #ccc;
    font-family: 'Dosis', sans-serif;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #c71d1d;
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 4px;
    font-family: 'Dosis', sans-serif;
}

.newsletter-form input::placeholder {
    color: #aaa;
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: #c71d1d;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding: 2rem 2rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

.footer-bottom p {
    color: #999;
    font-family: 'Dosis', sans-serif;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .header-container {
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .footer-content {
        padding: 0 1rem;
    }
}

/* Nav Top Css */

#nav_top {
    width: 94.2vw;
    height: 12vh;
    padding: 0 4.5vw 0 4vw;
    left: 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    z-index: 1;
}
#nav_top>img {
    height: 50px;
}
#nav_top>button {
    padding: 7px 16px;
    font-family: "druk heavy";
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 24px;
    color: #fff;
    white-space: nowrap;
    background-color: rgb(199, 29, 29);
    border-style: none;
    cursor: pointer;
}

#nav_top>i {
    font-size: 2.5vw;
    display: none;
}
/* Nav Left Css */

#nav_left {
    width: 5vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 25px 0;
    align-items: center;
    position: absolute;
    z-index: 1;
    gap: 2vmax;
    border-right: 2px solid rgb(43, 42, 42);
}

/* Bottle Image */

#bottle {
    position: absolute;
    height: 95vh;
    top: 0%;
    left: 38%;
    z-index: 990;
    border-image: 0 0 2vmax black;
}
#bottlecopy {
    display: none;
}

/* Page1 Css */

#page1 {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
#page1 h1 {
    width: 60vw;
    background-color: rgb(153, 13, 13);
    font-family: 'Antom', sans-serif;
    font-size: 13vw;
    font-weight: 900;
    text-align: center;
    word-spacing: -1.5vw;
    text-transform: uppercase;
    line-height: 12vw;
    background-image: url(img/texture.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-font-smoothing: antialiased;
}
#page1_dog_image {
    height: 15vh;
    position: absolute;
    top: 17%;
    left: 34.5%;
    transform: rotate(-30deg);
}

/* Page 2 Css */


#page2 {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4.1vw 0 10vw;
}

#page2_part1 {
    width: 25vw;
    height: 79vh;
}
#page2_part1 h3 {
    font-family: dancing script;
    margin-bottom: 12px;
}
#page2_part1 h1 {
    width: 25vw;
    height: 30vh;
    font-size: 7vw;
    line-height: 14vh;
    font-weight: 500;
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    margin-bottom: 12px;
    word-spacing: -1vmax;
    background: url(img/texture.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-color: black;
    -webkit-font-smoothing: antialiased;
}
#page2_part1>p {
    font-family: Gilroy;
    color: #111;
    font-size: 13px;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 15px;
}
#page2_part1>button {
    padding: 10px 20px;
    font-family: "druk heavy";
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 20px;
    white-space: nowrap;
    background-color: black;
    border-style: none;
    cursor: pointer;
    color: #fff;
}

#page2_part2 {
    width: 26.5vw;
    height: 65vh;
    padding: 3.5vmax 3.5vmax;
    border: 0.2vmax solid black;
    box-shadow: 0 0 0.2vmax black;
    font-family: Gilroy;
}
#page2_part2 h3 {
    font-size: 15px;
    margin-bottom: 3px;
    font-weight: 600;
}
#page2_part2 h5 {
    font-size: 13px;
    margin-bottom: 6px;
    font-weight: 600;
    color: #666;
}


#box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 0.2vmax solid black;
    margin-bottom: 1vh;
}
#page2_part2 p {
    font-size: 10px;
    width: 12vw;
    color: #111;
    line-height: 13px;
    font-weight: 600;
}

#box h2 {
    font-size: 40px;
    font-family: "druk heavy";
}
#box h2 span {
    font-size: 30px;
}

/* page 3 css */


#page3 {
    width: 100vw;
    height: 110vh;
    padding: 0 5vmax 0 10vmax;
}

#page3 h1 {
    width: 85vw;
    font-size: 18.3vw;
    line-height: 18.5vw;
    font-weight: 500;
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    background: url(img/texture.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-color: rgb(177, 29, 29);
}
#page3_text {
    display: flex;
    justify-content: space-between;
}
#page3_text_part1 a img {
    width: 25vw;
    margin-top: 3vh;
}
#page3_text_part1 h5 {
    width: 23vw;
    font-size: 2vw;
    margin-top: 3vh;
    line-height: 4vh;
    font-family: Gilroy;
}

#page3_text_part2 {
    width: 30vw;
    padding: 1vmax 2vmax;
}
#page3_text_part2 h5 {
    width: 25vw;
    font-size: 1vmax;
    font-family: 'Dosis', sans-serif;
    font-weight: 100;
}
#page3_text_part2 h2 {
    margin-top: 2vmax;
    font-family: 'Anton', sans-serif;
    font-size: 1.5vmax;
    font-weight: 100;
    letter-spacing: 0.05vmax;

}
#page3_text_part2 p {
   margin-top: 3vh;
    font-family: 'Dosis', sans-serif;
    font-weight: 100;
}

/* Page 4 css */

#page4 {
    width: 100vw;
    height: 100vh;
    display: flex;
    position: relative;
}

#page4_color_image1 {
    width: 20vw;
    margin: 0vh 0 0 20vh;
}
#page4_color_image1_text {
    width: 13vw;
    position: absolute;
    top: 5%;
    left: 15%;
    color: #fff;
    text-align: center;
}
#page4_color_image1_text h4 {
    width: 8vw;
    margin-bottom: 1vh;
    margin-left: 3vmax;
    font-family: 'Anton', sans-serif;
    border-bottom: 0.2vmax solid #000;
    font-weight: 100;
    letter-spacing: 0.1vmax;
    text-transform: uppercase;
}



#page4_color_image2 {
    width: 21vw;
    margin: 26vh 0 0 -6vh;
}

#page4_color_image2_text {
    width: 13vw;
    position: absolute;
    top: 32%;
    left: 33%;
    color: #fff;
    text-align: center;
}
#page4_color_image2_text h4 {
    width: 4vw;
    margin-left: 5vmax;
    font-family: 'Anton', sans-serif;
    border-bottom: 0.2vmax solid #000;
    font-weight: 100;
    letter-spacing: 0.1vmax;
    text-align: center;
    text-transform: uppercase;
    
}



#page4_color_image3 {
    width: 25vw;
    margin: 20vh 0 0 40vh;
}
#page4_color_image3_text {
    width: 15vw;
    position: absolute;
    top: 30%;
    left: 74%;
    color: #fff;
    text-align: center;
}
#page4_color_image3_text h4 {
    width: 8vw;
    margin-bottom: 1vh;
    margin-left: 3.5vmax;
    text-transform: uppercase;
    font-family: 'Anton', sans-serif;
    border-bottom: 0.2vmax solid #000;
    font-weight: 100;
    letter-spacing: 0.1vmax;
    text-transform: uppercase;
}

#page4_color_image4 {
    width: 16vw;
    height: 50vh;
    margin: 45vh 0 0 -165vh;
    transform: rotate(-17deg);
}


/* Page 5 css */


#page5 {
    width: 100vw;
    height: 110vh;
    padding: 0 0 0 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}
#page5 h5 {
    font-size: 2.5vmax;
    font-family: Gilroy;
}
#page5 h1 {
    width: 30vw;
    text-transform: uppercase;
    font-family: 'Anton',sans-serif;
    font-weight: 600;
    font-size: 6.5vw;
    background: url(img/texture.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-color: black;
}



#page5_image_box {
    width: 100vw;
    height: 85vh;
    padding: 0 3vw 0 5vw;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
#page5_bottel {
    width: 15vw;
    height: 60vh;
    justify-content: center;
}
#page5_bottel h4 {
    display: flex;
    align-items: center;
    justify-content: space-around;
    text-align: center;
    font-family: Gilroy;
}

#page5_bottel img {
    width: 15vw;
}
#image11 {
    height: 48vh;
}
#image22 {
    transform: rotate(-15deg);
}
#image33 {
    height: 47vh;
    opacity: 0;
    transform: rotate(-15deg);
}
#image44 {
    transform: rotate(-15deg);
}
#image55 {
    transform: rotate(-15deg);
}
#page5_bottel h4 {
    font-family: 'Dosis', sans-serif;
}
#page5_bottel h6 {
    display: flex;
    justify-content: space-around;
    font-family: Gilroy;
    font-size: 1.1vmax;
}


/* Page 6 */

#page6 {
    width: 100vw;
    height: 90vh;
    padding: 0 0vw 0 9vw;
    display: flex;
    gap: 30px;
}
#page6 img {
    width: 50vw;
    height: 62vh;
}

#page5_part2 {
    padding: 0 4vw 0 4vw;
    width: 40vw;
    height: 62vh;
}
#page6_part2 h5 {
    font-size: 2vmax;
    font-family: Gilroy;
}

#page6_part2 h1 {
   margin-top: 3vh;
   width: 30vw;
   font-family: 'Anton', sans-serif;
   font-size: 4vw;
   font-weight: 100;
   line-height: 9.5vh;
   letter-spacing: 0.5vw;
   text-transform: uppercase;
}
#page6_part2 p {
    margin-top: 3vh;
    font-weight: 400;
    font-family: 'Dosis', sans-serif;
    color: #111;
}
#page6_part2>button {
    margin-top: 3vh;
    font-size: 1.2vmax;
    padding: 0.8vmax 1.5vmax;
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    font-weight: 100;
    color: #fff;
    background-color: #000;
    border-style: none;
    cursor: pointer;
}

/* Beer Cards Section */
#beer-cards {
    width: 100vw;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.beer-cards-container {
    max-width: 1400px;
    margin: 0 auto;
}

.beer-cards-title {
    font-family: 'Anton', sans-serif;
    font-size: 3.5rem;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
    letter-spacing: 2px;
    background: url(img/texture.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.beer-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.beer-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.beer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(199, 29, 29, 0.2);
}

.beer-card-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.beer-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(199, 29, 29, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.beer-card:hover .beer-card-image::before {
    opacity: 1;
}

.beer-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.beer-card:hover .beer-card-image img {
    transform: scale(1.05) rotate(-5deg);
}

.beer-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.beer-card-content h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.beer-type {
    font-family: 'Dancing Script', cursive;
    font-size: 1.1rem;
    color: #c71d1d;
    margin-bottom: 1rem;
    font-weight: 600;
}

.beer-description {
    font-family: 'Dosis', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.beer-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.stat {
    font-family: 'Anton', sans-serif;
    font-size: 0.9rem;
    color: #333;
    letter-spacing: 0.5px;
}

.beer-card-btn {
    width: 100%;
    padding: 12px 20px;
    font-family: 'Anton', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background: linear-gradient(135deg, #c71d1d 0%, #a01717 100%);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.beer-card-btn:hover {
    background: linear-gradient(135deg, #a01717 0%, #7a1212 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(199, 29, 29, 0.3);
}

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

/* Responsive Beer Cards */
@media (max-width: 1024px) {
    .beer-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .beer-cards-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    #beer-cards {
        padding: 3rem 1rem;
    }
    
    .beer-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .beer-cards-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .beer-card-image {
        height: 240px;
    }
    
    .beer-card-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .beer-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .beer-cards-title {
        font-size: 1.8rem;
    }
    
    .beer-card-image {
        height: 220px;
    }
}