/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.logo{
   width: 100px;
   height: auto;
   max-width: none;
   flex-shrink: 0;
   
}

.footer-logo{
   width: 120px;
   height: auto;
   max-width: none; 
}


/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

@media (min-width: 768px) {
    .header-content {
        height: 5rem;
    }
}

/* Logo */
.logo-img {
    height: 2.5rem;
    width: auto;
    object-fit: contain;
}

@media (min-width: 768px) {
    .logo-img {
        height: 3rem;
    }
}

/* Desktop Navigation */
.nav-desktop {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #030213;
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #030213;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hamburger Button */
.hamburger-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.hamburger-button .hamburger-line {
    width: 30px;
    height: 3px;
    background: #333;
    margin: 6px 0;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 40;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}



.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 80vw;
  max-width: 320px;
  background: white;
  box-shadow: -2px 0 12px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 2rem 1.5rem;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}



.mobile-menu.active .mobile-menu-content {
  transform: translateX(0);
}


.mobile-menu-logo {
    margin-bottom: 2rem;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-link {
  text-decoration: none;
  color: #030213;
  font-weight: 600;
  font-size: 1.125rem;
  transition: color 0.2s ease;
}

.mobile-nav-link:hover {
  color: #66ccfa; /* Puff&Co light blue */
}
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 44px;
}

.btn-primary {
    background: #030213;
    color: white;
}

.btn-primary:hover {
    background: rgba(3, 2, 19, 0.9);
    transform: translateY(-1px);
}

.btn-secondary {
    background: #f1f5f9;
    color: #030213;
}

.btn-secondary:hover {
    background: rgba(241, 245, 249, 0.8);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: #030213;
    border: 1px solid #e2e8f0;
}

.btn-outline:hover {
    background: #f8fafc;
    transform: translateY(-1px);
}

@media (min-width: 640px) {
    .btn {
        padding: 0.875rem 1.75rem;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, rgba(241, 245, 249, 0.2) 100%);
    padding-top: 4rem;
    padding-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero {
        padding-top: 5rem;
        padding-bottom: 3rem;
    }
}

.hero-content {
    display: grid;
    gap: 2rem;
    align-items: center;
    padding: 2rem 0;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        padding: 5rem 0;
    }
}

.hero-text {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-text {
        text-align: left;
    }
}

.hero-title {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.text-primary {
    color: #030213;
}

.hero-description {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .hero-description {
        margin-left: 0;
        margin-right: 0;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

/* Hero Image */
.hero-image {
    position: relative;
    order: -1;
}

@media (min-width: 1024px) {
    .hero-image {
        order: 1;
    }
}

.hero-image-container {
    aspect-ratio: 1;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(3, 2, 19, 0.1) 0%, rgba(241, 245, 249, 0.3) 100%);
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.hero-img:hover {
    transform: scale(1.05);
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
}

.floating-1 {
    top: -1rem;
    right: -1rem;
    width: 5rem;
    height: 5rem;
    background: rgba(3, 2, 19, 0.2);
}

.floating-2 {
    bottom: -1rem;
    left: -1rem;
    width: 4rem;
    height: 4rem;
    background: rgba(241, 245, 249, 0.3);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 4rem;
    }
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #030213;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
}

.section-header p {
    font-size: 1rem;
    color: #6b7280;
    max-width: 42rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section-header p {
        font-size: 1.125rem;
    }
}

/* Shishas Section */
.shishas {
    padding: 3rem 0;
    background: rgba(241, 245, 249, 0.1);
}

@media (min-width: 768px) {
    .shishas {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .shishas {
        padding: 5rem 0;
    }
}

.shishas-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .shishas-grid {
        gap: 3rem;
    }
}

.shisha-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.shisha-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

@media (min-width: 1024px) {
    .shisha-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    
    .shisha-card.reverse .shisha-content {
        order: 1;
    }
    
    .shisha-card.reverse .shisha-image {
        order: 2;
    }
}

.shisha-image {
    aspect-ratio: 4/3;
}

@media (min-width: 768px) {
    .shisha-image {
        aspect-ratio: 4/5;
    }
}

@media (min-width: 1024px) {
    .shisha-image {
        aspect-ratio: auto;
        height: 100%;
    }
}

.shisha-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.shisha-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .shisha-content {
        padding: 2rem;
    }
}

@media (min-width: 1024px) {
    .shisha-content {
        padding: 3rem;
    }
}

.shisha-content h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #030213;
}

@media (min-width: 768px) {
    .shisha-content h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

.shisha-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .shisha-content p {
        margin-bottom: 2rem;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #030213;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature span {
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .feature span {
        font-size: 1rem;
    }
}

/* Flavors Section */
.flavors {
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .flavors {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .flavors {
        padding: 5rem 0;
    }
}

.flavors-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}



@media (min-width: 640px) {
    .flavors-grid {
      grid-template-columns: repeat(2, auto);
    }
}

@media (min-width: 1024px) {
    .flavors-grid {
        grid-template-columns: repeat(3, auto);
        gap: 2rem;
    }
}

.flavor-card {
    width: 300px;
    max-width: 100%;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.flavor-accent {
    height: 0.25rem;
}

@media (min-width: 768px) {
    .flavor-accent {
        height: 0.5rem;
    }
}

.pink {
    background: linear-gradient(90deg, #ec4899 0%, #be185d 100%);
}

.amber {
    background: linear-gradient(90deg, #f59e0b 0%, #ea580c 100%);
}

.green {
    background: linear-gradient(90deg, #059669 0%, #ffffff 100%);
}

.yellow {
    background: linear-gradient(90deg, #eab308 0%, #f97316 100%);
}

.red {
    background: linear-gradient(90deg, #ef4444 0%, #ec4899 100%);
}

.flavor-content {
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .flavor-content {
        padding: 2rem;
    }
}

.flavor-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .flavor-icon {
        width: 3.5rem;
        height: 3.5rem;
    }
}

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

.pink-bg {
    background: rgba(236, 72, 153, 0.1);
}

.amber-bg {
    background: rgba(245, 158, 11, 0.1);
}

.green-bg {
    background: rgba(5, 150, 105, 0.1);
}

.yellow-bg {
    background: rgba(234, 179, 8, 0.1);
}

.red-bg {
    background: rgba(239, 68, 68, 0.1);
}

.flavor-dot {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
}

@media (min-width: 768px) {
    .flavor-dot {
        width: 1.75rem;
        height: 1.75rem;
    }
}

.pink-gradient {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
}

.amber-gradient {
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
}

.green-gradient {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.yellow-gradient {
    background: linear-gradient(135deg, #eab308 0%, #f97316 100%);
}

.red-gradient {
    background: linear-gradient(135deg, #ef4444 0%, #ec4899 100%);
}

.flavor-content h3 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #030213;
}

@media (min-width: 768px) {
    .flavor-content h3 {
        font-size: 1.25rem;
    }
}

.flavor-content p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .flavor-content p {
        font-size: 1rem;
    }
}

/* Contact Section */
.contact {
    padding: 3rem 0;
    background: rgba(241, 245, 249, 0.1);
}

@media (min-width: 768px) {
    .contact {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .contact {
        padding: 5rem 0;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.contact-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

@media (min-width: 768px) {
    .contact-card {
        padding: 2rem;
    }
}

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

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .contact-icon {
        width: 3rem;
        height: 3rem;
    }
}

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

.whatsapp {
    color: #059669;
}

.instagram {
    color: #ec4899;
}

.hours {
    color: #7c3aed;
}

.contact-card h3 {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #030213;
}

@media (min-width: 768px) {
    .contact-card h3 {
        font-size: 1rem;
    }
}

.contact-card p {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .contact-card p {
        font-size: 0.875rem;
    }
}

.contact-card .btn {
    width: 100%;
    font-size: 0.75rem;
    min-height: 2.5rem;
}

@media (min-width: 768px) {
    .contact-card .btn {
        font-size: 0.875rem;
        min-height: 2.75rem;
    }
}

/* CTA Card */
.cta-card {
    background: #030213;
    color: white;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.cta-content {
    padding: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .cta-content {
        padding: 2rem;
    }
}

@media (min-width: 1024px) {
    .cta-content {
        padding: 3rem;
    }
}

.cta-content h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .cta-content h3 {
        font-size: 1.5rem;
    }
}

.cta-content p {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 1024px) {
    .cta-content p {
        font-size: 1.125rem;
    }
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.cta-buttons .btn {
    min-height: 3rem;
    padding: 0 2rem;
}

.cta-buttons .btn-secondary {
    background: white;
    color: #030213;
}

.cta-buttons .btn-outline {
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.cta-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
    background: #030213;
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
    }
}

.footer-logo-img {
    height: 2rem;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

@media (min-width: 768px) {
    .footer-logo-img {
        height: 2.5rem;
    }
}

.footer-text {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-text {
        text-align: right;
    }
}

.footer-text p {
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 0;
}

.footer-tagline {
    font-size: 0.75rem;
    opacity: 0.6;
    margin-top: 0.25rem;
}



/* Responsive Design */
@media (max-width: 767px) {
    .hero-content {
        padding: 1rem 0;
    }

    .hero-image {
    display: none;
    }


    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .shishas,
    .flavors,
    .contact {
        padding: 2rem 0;
    }
    
    .shisha-content,
    .flavor-content,
    .contact-card {
        padding: 1rem;
    }
    
    .cta-content {
        padding: 1rem;
    }
}

/* Performance Optimizations */
img {
    max-width: 100%;
    height: auto;
}

button {
    -webkit-tap-highlight-color: transparent;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
.btn:focus,
.nav-link:focus,
.mobile-nav-link:focus {
    outline: 2px solid #030213;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .mobile-menu,
    .floating-element {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding-top: 1rem;
    }
}