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

:root {
    --red: #DC143C;
    --orange: #FF8C42;
    --yellow: #FFD700;
    --green: #7FFF00;
    --turquoise: #00CED1;
    --dark: #1a1a1a;
    --white: #FFFFFF;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
}

/* NAVBAR */
.navbar {
    background: #ffaa01;
    padding: 5px 50px 40px;
    margin-top: -30px;
    position: relative;
    z-index: 1000;
}

.banderines {
    position: absolute;
    top: 60px;
    width: 95%;
    height: auto;
    z-index: 1002;
    pointer-events: none;
    max-width: none;
}

.banderines-left {
    left: 0;
}

.banderines-right {
    right: 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
}

.nav-links-container {
    display: flex;
    justify-content: center;
    background: #e62701;
    border-radius: 50px;
    padding: 15px 50px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
    justify-content: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.nav-links a:hover {
    opacity: 0.8;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.logo {
    width: 280px;
    height: 170px;
    background: url('../images/rays-logo.png') center/contain no-repeat;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* HERO SECTION */
.hero {
    background: #ffaa01;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    margin-top: -20px;
}

.flores-hero {
    position: absolute;
    top: -25px;
    right: 0;
    width: 2100px;
    height: auto;
    z-index: 100;
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 600px;
    padding: 40px 0;
    position: relative;
    z-index: 2;
}

.hero-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 750px;
    height: auto;
    object-fit: cover;
}

.hero-content {
    padding: 40px 60px;
    text-align: left;
}

.hero-content h2 {
    font-family: 'Spectral', serif;
    font-size: 77px;
    font-weight: 600;
    color: #7c1623;
    margin-bottom: 0;
    line-height: 1;
}

.hero-content h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 120px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 4px;
    line-height: 0.9;
    margin: 10px 0;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.2);
}

.hero-content h3 {
    font-family: 'Spectral', serif;
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    color: #e52802;
    margin-top: 10px;
    transition: opacity 0.5s ease-in-out;
}

/* DIVIDER */
.divider {
    width: 100%;
    height: 90px;
    background: white url('../images/division.png') repeat-x center;
    background-size: auto 90px;
}

.divider img {
    display: none;
}

/* FEATURES SECTION */
.features {
    background: var(--white);
    padding: 0;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 100%;
}

.feature-card {
    position: relative;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.feature-card.authentic {
    background: linear-gradient(135deg, #DC143C 0%, #B91230 100%);
}

.feature-card.delicious {
    background: linear-gradient(135deg, #00CED1 0%, #00B4B8 100%);
}

.feature-card.specials {
    background: linear-gradient(135deg, var(--orange) 0%, #E67E22 100%);
}

.feature-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    pointer-events: none;
    z-index: 1;
}

.feature-card.authentic .feature-image::after {
    background: linear-gradient(
        to top,
        rgba(220, 20, 60, 1) 0%,
        rgba(220, 20, 60, 0.7) 30%,
        rgba(220, 20, 60, 0.4) 60%,
        transparent 100%
    );
}

.feature-card.delicious .feature-image::after {
    background: linear-gradient(
        to top,
        rgba(0, 206, 209, 1) 0%,
        rgba(0, 206, 209, 0.7) 30%,
        rgba(0, 206, 209, 0.4) 60%,
        transparent 100%
    );
}

.feature-card.specials .feature-image::after {
    background: linear-gradient(
        to top,
        rgba(255, 140, 66, 1) 0%,
        rgba(255, 140, 66, 0.7) 30%,
        rgba(255, 140, 66, 0.4) 60%,
        transparent 100%
    );
}

.feature-content {
    padding: 40px 30px;
    text-align: center;
    color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.feature-content p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 400;
}

.feature-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #b11b00;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 25px;
    transition: all 0.3s ease;
    align-self: center;
}

.feature-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    background: #8f1600;
}

/* VISIT US SECTION */
.visit-us {
    background: linear-gradient(135deg, #ffa900 0%, #e69500 100%);
    position: relative;
    overflow: hidden;
}

.flores-visit {
    position: absolute;
    bottom: -305px;
    right: 0;
    width: 1100px;
    height: auto;
    z-index: 100;
    pointer-events: none;
}

.visit-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 50px;
    position: relative;
    min-height: 400px;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visit-image {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}

.visit-image img {
    width: 550px;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.visit-image::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 180px;
    background: linear-gradient(
        to left,
        rgba(255, 169, 0, 1) 0%,
        rgba(255, 169, 0, 0.9) 20%,
        rgba(255, 169, 0, 0.7) 40%,
        rgba(255, 169, 0, 0.4) 70%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

.mirror-image {
    transform: scaleX(-1);
}

.visit-content {
    color: white;
    position: relative;
    z-index: 3;
    max-width: 500px;
    margin-left: 480px;
}

.visit-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 50px;
    letter-spacing: 3px;
    margin-bottom: 10px;
    color: white;
    margin-left: 200px;
    position: relative;
    top: -80px;
}

.visit-content h3 {
    font-family: 'Spectral', serif;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: #ef0000;
    margin-left: 155px;
    position: relative;
    top: -80px;
}

.visit-content .address {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 500;
    font-style: italic;
    color: #ffffff;
    margin-left: 80px;
    position: relative;
    top: -95px;
}

.visit-content .phone {
    font-size: 24px;
    font-weight: 500;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 30px;
    margin-left: 80px;
    position: relative;
    top: -95px;
}

.visit-content .hours {
    margin-top: 30px;
    margin-left: 100px;
    position: relative;
    top: -30px;
}

.visit-content .hours h4 {
    font-family: 'Spectral', serif;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #ef0000;
    margin-left: 90px;
}

.visit-content .hours p {
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 500;
    font-style: italic;
    color: #ffffff;
}

.visit-content .hours strong {
    font-weight: 700;
    font-style: normal;
}

/* MARGARITAS SECTION */
.margaritas {
    background: linear-gradient(135deg, #7FFF00 0%, #6BDB00 100%);
    padding: 48px 30px;
    position: relative;
    overflow: hidden;
}

.flores-margaritas {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 840px;
    height: auto;
    z-index: 100;
    pointer-events: none;
}


.margaritas-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    min-height: 240px;
    z-index: 2;
}

.margaritas-content {
    position: relative;
    z-index: 3;
    max-width: 500px;
    margin-left: -50px;
    margin-right: auto;
}

.margaritas-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: 600;
    color: white;
    margin-bottom: 0;
    line-height: 1;
    margin-left: 120px;
    margin-top: 80px;
}

.margaritas-content h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 120px;
    font-weight: 700;
    color: white;
    letter-spacing: 4px;
    line-height: 1;
    margin: 10px 0 10px 35px;
    text-shadow: 4px 4px 0px rgba(0,0,0,0.2);
}

.margaritas-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: white;
    margin-top: 0;
    margin-left: 170px;
}

.flores-margarita-text {
    position: absolute;
    width: 783px;
    height: auto;
    left: 130px;
    bottom: -170px;
    pointer-events: none;
}

.margaritas-images {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}

.margarita-img {
    width: 720px;
    height: 100%;
    object-fit: cover;
    mask-image: linear-gradient(
        to right,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.3) 10%,
        rgba(0,0,0,0.6) 20%,
        rgba(0,0,0,0.9) 35%,
        rgba(0,0,0,1) 50%,
        rgba(0,0,0,1) 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.3) 10%,
        rgba(0,0,0,0.6) 20%,
        rgba(0,0,0,0.9) 35%,
        rgba(0,0,0,1) 50%,
        rgba(0,0,0,1) 100%
    );
}

/* ORDER TO-GO SECTION */
.order-togo {
    background: linear-gradient(135deg, #DC143C 0%, #B91230 100%);
    padding: 80px 50px;
    text-align: center;
}

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

.order-container h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.order-container p {
    font-family: 'Spectral', serif;
    font-size: 28px;
    color: white;
    margin-bottom: 50px;
    font-style: italic;
}

.delivery-platforms {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.platform-link {
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: block;
}

.platform-link:hover {
    transform: translateY(-10px);
    opacity: 0.9;
}

.platform-link img {
    width: 200px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.platform-dark {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 20px;
}

.platform-dark img {
    box-shadow: none;
}

/* FOOTER */
footer {
    background: linear-gradient(135deg, #00CED1 0%, #00B4B8 100%);
    color: white;
    padding: 60px 50px 30px;
    text-align: center;
}

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

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 0.7;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
}

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

.footer-logo-img {
    width: 150px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-social {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    color: var(--turquoise);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.footer-legal {
    border-top: 2px solid rgba(255,255,255,0.3);
    padding-top: 20px;
    margin-top: 30px;
}

.footer-legal p {
    font-size: 10px;
    opacity: 0.8;
    line-height: 1.6;
}

/* RESPONSIVE */

/* Large Desktop - 1400px and up */
@media (min-width: 1400px) {
    .nav-container,
    .hero-container,
    .visit-container,
    .margaritas-container,
    .footer-container {
        max-width: 1400px;
    }
}

/* Desktop - 1200px to 1399px */
@media (max-width: 1399px) {
    .banderines {
        width: 90%;
    }

    .flores-hero {
        width: 800px;
    }

    .flores-visit {
        width: 900px;
    }

    .flores-margaritas {
        width: 700px;
    }

    .flores-margarita-text {
        width: 650px;
    }
}

/* Tablet Landscape - 1024px to 1199px */
@media (max-width: 1199px) {
    .nav-links {
        gap: 25px;
        flex-wrap: wrap;
    }

    .banderines {
        width: 85%;
        top: 50px;
    }

    .hero-content h2 {
        font-size: 60px;
    }

    .hero-content h1 {
        font-size: 100px;
    }

    .hero-content h3 {
        font-size: 28px;
    }

    .flores-hero {
        width: 700px;
        top: -50px;
    }

    .visit-content {
        margin-left: 400px;
    }

    .visit-content h2 {
        margin-left: 150px;
        font-size: 45px;
    }

    .visit-content h3 {
        margin-left: 110px;
        font-size: 38px;
    }

    .visit-content .address,
    .visit-content .phone {
        margin-left: 60px;
        font-size: 18px;
    }

    .visit-content .hours {
        margin-left: 70px;
    }

    .visit-content .hours h4 {
        font-size: 38px;
        margin-left: 60px;
    }

    .visit-content .hours p {
        font-size: 20px;
    }

    .flores-visit {
        width: 800px;
    }

    .margaritas-content h2 {
        font-size: 56px;
        margin-left: 100px;
    }

    .margaritas-content h1 {
        font-size: 100px;
        margin-left: 30px;
    }

    .margaritas-content h3 {
        font-size: 42px;
        margin-left: 140px;
    }

    .flores-margaritas {
        width: 600px;
    }

    .flores-margarita-text {
        width: 550px;
        left: 110px;
    }

    .margarita-img {
        width: 600px;
    }
}

/* Tablet - 768px to 1023px */
@media (max-width: 1023px) {
    .navbar {
        padding: 5px 30px 30px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 11px;
    }

    .banderines {
        display: none;
    }

    .logo {
        width: 220px;
        height: 130px;
    }

    .hero {
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 40px 20px;
    }

    .hero-content {
        text-align: center;
        padding: 40px 20px;
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-content h2 {
        font-size: 50px;
    }

    .hero-content h1 {
        font-size: 80px;
    }

    .hero-content h3 {
        font-size: 24px;
    }

    .flores-hero {
        width: 500px;
        top: -30px;
    }

    .features-container {
        grid-template-columns: 1fr;
    }

    .visit-us {
        overflow: visible;
    }

    .visit-container {
        flex-direction: column;
        justify-content: center;
        padding: 60px 30px;
        min-height: auto;
    }

    .visit-image {
        position: relative;
        left: auto;
        top: auto;
        bottom: auto;
        justify-content: center;
        margin-bottom: 40px;
    }

    .visit-image::after {
        display: none;
    }

    .visit-image img {
        width: 100%;
        max-width: 400px;
        height: auto;
    }

    .visit-content {
        margin-left: 0;
        text-align: center;
    }

    .visit-content h2,
    .visit-content h3,
    .visit-content .address,
    .visit-content .phone,
    .visit-content .hours,
    .visit-content .hours h4 {
        margin-left: 0;
        position: static;
        top: auto;
    }

    .visit-content h2 {
        font-size: 48px;
    }

    .visit-content h3 {
        font-size: 36px;
    }

    .visit-content .address {
        font-size: 18px;
    }

    .visit-content .phone {
        font-size: 22px;
    }

    .visit-content .hours h4 {
        font-size: 36px;
    }

    .visit-content .hours p {
        font-size: 20px;
    }

    .flores-visit {
        width: 600px;
        bottom: -300px;
    }

    .margaritas {
        overflow: visible;
    }

    .margaritas-container {
        min-height: auto;
    }

    .margaritas-content {
        text-align: center;
        margin-left: 0;
        padding-bottom: 40px;
    }

    .margaritas-content h2,
    .margaritas-content h1,
    .margaritas-content h3 {
        margin-left: 0;
    }

    .margaritas-content h2 {
        font-size: 48px;
        margin-top: 40px;
    }

    .margaritas-content h1 {
        font-size: 80px;
    }

    .margaritas-content h3 {
        font-size: 36px;
    }

    .margaritas-images {
        position: relative;
        right: auto;
        top: auto;
        bottom: auto;
        justify-content: center;
        margin-top: 40px;
    }

    .margarita-img {
        width: 100%;
        max-width: 400px;
        height: auto;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .flores-margaritas {
        width: 500px;
        bottom: 10px;
    }

    .flores-margarita-text {
        width: 400px;
        left: 50%;
        transform: translateX(-50%);
        bottom: -180px;
    }

    .order-container h2 {
        font-size: 56px;
    }

    .order-container p {
        font-size: 24px;
    }

    .platform-link img {
        width: 180px;
    }

    .footer-nav {
        gap: 20px;
    }
}

/* Mobile - up to 767px */
@media (max-width: 767px) {
    .navbar {
        padding: 10px 15px 20px;
        margin-top: -15px;
    }

    .logo {
        width: 180px;
        height: 110px;
    }

    .nav-links-container {
        padding: 12px 20px;
    }

    .nav-links {
        gap: 10px;
        font-size: 9px;
    }

    .nav-links a {
        font-size: 9px;
        letter-spacing: 0.5px;
    }

    .hero {
        margin-top: -10px;
    }

    .hero-container {
        padding: 30px 15px;
    }

    .hero-content {
        padding: 30px 15px;
    }

    .hero-content h2 {
        font-size: 36px;
    }

    .hero-content h1 {
        font-size: 60px;
    }

    .hero-content h3 {
        font-size: 20px;
    }

    .flores-hero {
        width: 350px;
        top: -20px;
    }

    .feature-content h2 {
        font-size: 36px;
    }

    .feature-content p {
        font-size: 14px;
    }

    .visit-container {
        padding: 40px 20px;
    }

    .visit-image img {
        max-width: 300px;
    }

    .visit-content h2 {
        font-size: 36px;
    }

    .visit-content h3 {
        font-size: 28px;
    }

    .visit-content .address {
        font-size: 16px;
    }

    .visit-content .phone {
        font-size: 18px;
    }

    .visit-content .hours h4 {
        font-size: 28px;
    }

    .visit-content .hours p {
        font-size: 16px;
    }

    .flores-visit {
        width: 400px;
        bottom: -200px;
    }

    .margaritas {
        padding: 30px 15px;
    }

    .margaritas-content h2 {
        font-size: 36px;
        margin-top: 20px;
    }

    .margaritas-content h1 {
        font-size: 60px;
    }

    .margaritas-content h3 {
        font-size: 28px;
    }

    .flores-margaritas {
        width: 350px;
        bottom: 5px;
    }

    .flores-margarita-text {
        width: 280px;
        bottom: -140px;
    }

    .order-togo {
        padding: 50px 20px;
    }

    .order-container h2 {
        font-size: 48px;
    }

    .order-container p {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .delivery-platforms {
        gap: 30px;
    }

    .platform-link img {
        width: 150px;
    }

    .footer-nav {
        gap: 15px;
    }

    .footer-nav a {
        font-size: 10px;
    }

    .footer-logo-img {
        width: 120px;
    }

    .footer-legal p {
        font-size: 9px;
    }
}

/* Small Mobile - up to 480px */
@media (max-width: 480px) {
    .nav-links {
        gap: 8px;
    }

    .nav-links a {
        font-size: 8px;
        padding: 5px 0;
    }

    .logo {
        width: 150px;
        height: 90px;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content h3 {
        font-size: 18px;
    }

    .flores-hero {
        width: 250px;
    }

    .visit-content h2 {
        font-size: 28px;
    }

    .visit-content h3 {
        font-size: 24px;
    }

    .visit-content .hours h4 {
        font-size: 24px;
    }

    .visit-content .hours p {
        font-size: 14px;
    }

    .flores-visit {
        width: 300px;
    }

    .margaritas-content h2 {
        font-size: 28px;
    }

    .margaritas-content h1 {
        font-size: 48px;
    }

    .margaritas-content h3 {
        font-size: 24px;
    }

    .flores-margaritas {
        width: 250px;
    }

    .flores-margarita-text {
        width: 220px;
        bottom: -100px;
    }

    .order-togo {
        padding: 40px 15px;
    }

    .order-container h2 {
        font-size: 36px;
    }

    .order-container p {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .delivery-platforms {
        gap: 20px;
    }

    .platform-link img {
        width: 120px;
    }
}
