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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(#FFFAF7,#FFFAF7,#f7faff,#fdfff7,#FFFAF7,#fff9d0);
    color: #111;
}

a {
    text-decoration: none;
    color: inherit;
}

body.menu-open {
    overflow: hidden;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: #FFFAF7;
    border-bottom: 1px solid #444;
    z-index: 999;
    transition: box-shadow 0.3s ease;
}

header.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 2px;
    cursor: pointer;
    user-select: none;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
    user-select: none;
}

nav a:hover {
    color: #d22f27;
}

nav a.active {
    color: #d22f27;
    font-weight: bold;
    position: relative;
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #d22f27;
    border-radius: 1px;
}

.close-menu {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #111;
    cursor: pointer;
    z-index: 10000;
}

.close-menu:hover {
    color: #d22f27;
}



ul.title-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: center;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 2rem;
}

.btn-order {
    border: 2px solid #d22f27;
    padding: 0.5rem 1.2rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #d22f27;
    border-radius: 30px;
    transition: background-color 0.3s ease, color 0.3s ease;
    user-select: none;
}

.btn-order:hover {
    background-color: #d22f27;
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background: #111;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active div:nth-child(2) {
    opacity: 0;
}

.hamburger.active div:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

nav.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    background: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
}

nav.mobile-menu.active {
    display: flex;
}

.hero {
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 3rem 1.5rem;
    gap: 2rem;
}

.hero-text {
    flex: 1;
    max-width: 540px;
}

.hero-text h1 {
    font-weight: 900;
    font-size: 3.5rem;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-text p {
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #444;
}

.hero-text .btn-order {
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
    border-radius: 50px;
}

.hero-img {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-img img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.content-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.content-section h2 {
    font-weight: 900;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    letter-spacing: 1.5px;
}

.content-section p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #444;
    max-width: 700px;
    margin-bottom: 3rem;
}

.events-section {
    max-width: 1200px;
    margin: 0 auto 5rem;
    padding: 0 1.5rem;
    border-top: 3px solid #fbde04;
    border-top-style: double;
    padding-top: 2rem;
}

.events-section h3 {
    font-weight: 900;
    font-size: 2rem;
    letter-spacing: 1.2px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.event-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
    cursor: pointer;
    background: white;
}

.event-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.event-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.event-info {
    padding: 1.5rem;
}

.event-title {
    font-weight: 900;
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #111;
}

.event-location,
.event-description {
    font-weight: 500;
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.btn-more {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    background: #d22f27;
    border-radius: 25px;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.btn-more:hover {
    background: #a51e1e;
}

.event-meta {
    margin: 0.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.9rem;
    color: #666;
}

.event-meta i {
    margin-right: 8px;
    color: #d22f27;
}

/* Key Visual Spinning Cards */
.key-visual-cards {
    margin: 6rem auto 4rem;
    position: relative;
    height: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-container {
    position: relative;
    width: 320px;
    height: 220px;
}

.kv-card {
    position: absolute;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 1s ease, opacity 1s ease;
    opacity: 0;
    z-index: 1;
}

.card1 {
    transform: rotate(0deg) translateY(0);
    z-index: 3;
}

.card2 {
    transform: rotate(-12deg) translateY(10px);
    z-index: 2;
}

.card3 {
    transform: rotate(12deg) translateY(10px);
    z-index: 1;
}

/* Reveal animation */
.card-container.visible .kv-card {
    opacity: 1;
}

.card-container.visible .card1 {
    transform: rotate(-2deg) translateY(-10px);
}

.card-container.visible .card2 {
    transform: rotate(-18deg) translateY(0);
}

.card-container.visible .card3 {
    transform: rotate(18deg) translateY(0);
}

/* Studio Space Section */
.studio-space {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1.5rem;
    border-top: 3px solid #1c8ddf;
    border-top-style: double;
    padding-top: 2rem;
}

.studio-intro {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.studio-text {
    flex: 1;
    min-width: 280px;
}

.studio-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.studio-text p {
    font-size: 1.1rem;
    color: #444;
}

.studio-image {
    flex: 1;
    min-width: 280px;
}

.studio-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.studio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.studio-gallery img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

footer {
    background-color: #FFFAF7;
    color: #111;
    padding: 3rem 1.5rem;
    margin-top: 4rem;
    border-top: 1px solid #444;
    font-family: 'Courier New', Courier, monospace;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 1.5px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #5e5e5e;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #d22f27;
    font-weight: bold;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-social img {
    width: 24px;
    height: 24px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-social img:hover {
    opacity: 1;
}

.footer-credit {
    font-size: 0.8rem;
    color: #777;
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        margin-top: 100px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    nav.desktop-menu {
        display: none !important;
    }

    .hamburger {
        display: flex;
    }

    .about-block {
        max-width: 100%;
    }

    .about-text {
        max-width: 100%;
    }

    .about-hero {
        flex-direction: column;
        text-align: center;
        margin-top: 100px;
    }
}


/* ABOUT PAGE STYLE*/
.about-hero {
    text-align: center;
    padding: 5rem 1.5rem 2rem;
    background: #FFFAF7;
    color: #222;
    margin-top: 100px;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #444;
}

.about-sections {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1.5rem;
    display: grid;
    gap: 4rem;
}

.about-block {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.about-block:nth-child(even) {
    flex-direction: row-reverse;
}

.about-block img {
    flex: 1 1 40%;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1 1 50%;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    padding: 6rem 1.5rem 4rem;
    background-color: linear-gradient(#FFFAF7,#e9ff78);
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    padding: 2rem;
}

.cta-section a {
    background: #d22f27;
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 40px;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.3s ease;
}

.cta-section a:hover {
    background: #b51c1c;
}

.logo-carousel {
    overflow: hidden;
    background: #f9f9f9;
    padding: 2rem 0;
}

.logo-track {
    display: flex;
    width: calc(150%);
    /* double width for looping */
    animation: scroll 25s linear infinite;
}

.logo-slide {
    flex: 0 0 auto;
    width: 200px;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-slide img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-slide img:hover {
    filter: none;
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.logo-carousel h3 {
    align-items: center;
    align-self: center;
    display: flex;
    padding: 20px;
    color: #777;
    font-weight: lighter;
    justify-self: center;
}

.blog-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.blog-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
}

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

.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.2rem 1.5rem;
}

.meta {
    display: block;
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-headline {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #222;
}

.blog-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.read-more {
    color: #d22f27;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
}

/*float contact*/

.contact-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column-reverse; /* Main button stays at bottom */
  align-items: center;
  gap: 10px;
  z-index: 999;
}

/* Main button styles */
.contact-floating button {
  background: #000;
  color: white;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-floating button.open {
  background: #ff4d4d;
  transform: rotate(45deg); /* Turns into X */
}

/* Contact icons container */


.contact-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

/* Button style */
.contact-floating button {
  background: #000;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.3s ease;
}

.contact-floating button.open {
  background: #ff4d4d;
}

/* Contact Links */
.contact-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.contact-floating button {
  background: #000;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  font-size: 22px;
  color: white;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-floating button.open {
  background: #e63946; /* red-ish */
  transform: scale(1.1);
}

.contact-links {
  position: absolute;
  bottom: 70px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-links a {
  background: white;
  border-radius: 50%;
  width: 65px;      /* fixed width */
  height: 65px;     /* fixed height, same as width for perfect circle */
  font-size: 32px;  /* bigger icon */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: 
    opacity 0.3s ease, 
    transform 0.3s ease, 
    background-color 0.3s ease, 
    color 0.3s ease,
    background-image 0.3s ease;
}

.contact-links.show a {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* WhatsApp hover */
.contact-links a[href*="wa.me"]:hover {
  background-color: #25D366; /* WhatsApp green */
  color: white;
}

/* Instagram hover */
.contact-links a[href*="instagram.com"]:hover {
  color: white;
  background-image: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
}

/* Facade overlay */
.facade {
  display: none; /* hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.5);
  z-index: 998;
}

/* Show facade on small screens when active */
@media (max-width: 768px) {
  .facade.show {
    display: block;
  }
  
  /* Optional: slightly dim background behind floating container */
  .contact-floating {
    z-index: 999;
  }
}
