/*
Theme Name: Tuliza Bridal Studio
Theme URI: https://www.instagram.com/tulizabridal/
Author: Tuliza Bridal
Author URI: https://www.instagram.com/tulizabridal/
Description: A luxurious, elegant WordPress theme crafted for Tuliza Bridal Studio — The Ultimate Bridal Store for the Modern Bride. Features a refined ivory and champagne gold aesthetic with sections for gowns, robes, accessories, and shoes.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tuliza-bridal
Tags: one-column, custom-menu, featured-images, theme-options, translation-ready
*/

/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
  --ivory: #FAF7F2;
  --cream: #F5EDE3;
  --champagne: #C9A96E;
  --champagne-light: #D4BA88;
  --champagne-dark: #A8863E;
  --charcoal: #2C2C2C;
  --charcoal-light: #4A4A4A;
  --soft-gray: #8C8680;
  --white: #FFFFFF;
  --blush: #F2E6DC;
  --rose: #C4A28A;

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Outfit', 'Helvetica Neue', sans-serif;
  --font-accent: 'Cormorant', serif;

  --container-max: 1200px;
  --section-padding: 100px 0;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--charcoal);
  margin-bottom: 20px;
  font-style: italic;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--soft-gray);
  max-width: 560px;
  line-height: 1.8;
  font-weight: 300;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--champagne);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--champagne-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--charcoal);
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

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

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

.site-logo img {
  height: 180px;
  width: auto;
  object-fit: contain;
}

/* Dark logo for light header */
.site-header .site-logo img {
  height: 180px;
  filter: brightness(0);
}

.site-header.scrolled .site-logo img {
  height: 120px;
}

/* White logo for dark backgrounds */
.site-footer .site-logo img {
  height: 200px;
  filter: none;
}

.main-nav ul {
  display: flex;
  gap: 36px;
  align-items: center;
}

.main-nav a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--champagne);
  transition: var(--transition);
}

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

.nav-cta {
  background: var(--champagne) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.2em !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--champagne-dark) !important;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  margin: 6px 0;
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--cream);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 120px 0 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(201,169,110,0.12);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne-dark);
  margin-bottom: 32px;
}

.hero-badge::before {
  content: '✦';
  font-size: 0.6rem;
}

.hero h1 {
  color: var(--charcoal);
  margin-bottom: 24px;
  font-style: italic;
}

.hero h1 em {
  color: var(--champagne);
  font-style: normal;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--soft-gray);
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 480px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-image-frame {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--blush);
  overflow: hidden;
}

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

.hero-image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 1.5px solid var(--champagne);
  opacity: 0.4;
}

.hero-image-label {
  position: absolute;
  bottom: 40px;
  left: -40px;
  background: var(--white);
  padding: 20px 28px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.hero-image-label .number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--champagne);
  line-height: 1;
}

.hero-image-label .text {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--soft-gray);
  margin-top: 4px;
}

/* ============================================
   MARQUEE / SCROLLING TEXT
   ============================================ */
.marquee-section {
  padding: 28px 0;
  background: var(--charcoal);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  padding: 0 40px;
  flex-shrink: 0;
}

.marquee-track span::after {
  content: '◆';
  margin-left: 40px;
  font-size: 0.5rem;
  vertical-align: middle;
  color: var(--champagne);
  font-style: normal;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  padding: var(--section-padding);
  background: var(--ivory);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-main {
  aspect-ratio: 4/5;
  background: var(--cream);
  overflow: hidden;
}

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

.about-image-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: var(--champagne);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  padding: 20px;
  text-align: center;
}

.about-image-float .icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.about-image-float .label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

.about-content p {
  color: var(--charcoal-light);
  margin-bottom: 20px;
  font-weight: 300;
  line-height: 1.9;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-feature .dot {
  width: 8px;
  height: 8px;
  background: var(--champagne);
  border-radius: 50%;
  flex-shrink: 0;
}

.about-feature span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--charcoal);
}

/* ============================================
   COLLECTIONS / SERVICES SECTION
   ============================================ */
.collections-section {
  padding: var(--section-padding);
  background: var(--cream);
}

.collections-header {
  text-align: center;
  margin-bottom: 64px;
}

.collections-header .section-subtitle {
  margin: 0 auto;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.collection-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  group: collection;
}

.collection-card-image {
  aspect-ratio: 3/4;
  background: var(--blush);
  overflow: hidden;
  position: relative;
}

.collection-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collection-card:hover .collection-card-image img {
  transform: scale(1.08);
}

.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(44,44,44,0.75) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: var(--transition);
}

.collection-card:hover .collection-card-overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(44,44,44,0.85) 100%);
}

.collection-card-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(255,255,255,0.15);
  position: absolute;
  top: 20px;
  left: 24px;
  font-style: italic;
}

.collection-card h3 {
  color: var(--white);
  font-style: italic;
  margin-bottom: 6px;
}

.collection-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.6;
}

.collection-card-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  transition: var(--transition);
  color: var(--white);
  font-size: 0.9rem;
}

.collection-card:hover .collection-card-arrow {
  background: var(--champagne);
  border-color: var(--champagne);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section {
  padding: var(--section-padding);
  background: var(--ivory);
}

.why-header {
  text-align: center;
  margin-bottom: 64px;
}

.why-header .section-subtitle {
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.why-card {
  text-align: center;
  padding: 48px 32px;
  background: var(--white);
  border: 1px solid rgba(201,169,110,0.15);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  border-color: var(--champagne);
}

.why-card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: var(--cream);
  border-radius: 50%;
}

.why-card h3 {
  margin-bottom: 12px;
  font-style: italic;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--soft-gray);
  font-weight: 300;
  line-height: 1.8;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: var(--section-padding);
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '"';
  position: absolute;
  top: -40px;
  right: 10%;
  font-family: var(--font-display);
  font-size: 40rem;
  color: rgba(255,255,255,0.02);
  line-height: 1;
  pointer-events: none;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}

.testimonials-header .section-label {
  color: var(--champagne-light);
}

.testimonials-header .section-title {
  color: var(--white);
}

.testimonials-header .section-subtitle {
  color: rgba(255,255,255,0.5);
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  padding: 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,169,110,0.3);
}

.testimonial-stars {
  color: var(--champagne);
  font-size: 0.8rem;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  font-style: italic;
}

.testimonial-author-info .name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
}

.testimonial-author-info .role {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

/* ============================================
   CTA / BOOKING SECTION
   ============================================ */
.cta-section {
  padding: var(--section-padding);
  background: var(--cream);
  text-align: center;
}

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
}

.cta-divider {
  width: 60px;
  height: 1px;
  background: var(--champagne);
  margin: 0 auto 32px;
}

.cta-section .section-title {
  margin-bottom: 16px;
}

.cta-section .section-subtitle {
  margin: 0 auto 40px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-phone {
  margin-top: 28px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--champagne);
  font-style: italic;
}

.cta-phone a {
  color: var(--champagne);
}

.cta-phone a:hover {
  color: var(--champagne-dark);
}

/* ============================================
   INSTAGRAM FEED SECTION
   ============================================ */
.instagram-section {
  padding: 80px 0;
  background: var(--ivory);
  text-align: center;
}

.instagram-header {
  margin-bottom: 40px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}

.instagram-item {
  aspect-ratio: 1;
  background: var(--blush);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.instagram-item:hover img {
  transform: scale(1.1);
}

.instagram-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,44,44,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.instagram-item:hover .instagram-item-overlay {
  opacity: 1;
}

.instagram-item-overlay span {
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

.instagram-handle {
  margin-top: 32px;
}

.instagram-handle a {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--champagne);
  font-style: italic;
  border-bottom: 1px solid rgba(201,169,110,0.3);
  padding-bottom: 2px;
}

.instagram-handle a:hover {
  color: var(--champagne-dark);
  border-color: var(--champagne-dark);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .site-logo {
  color: var(--white);
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 320px;
  font-weight: 300;
}

.footer-column h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 24px;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  font-weight: 300;
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: var(--champagne);
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.6;
}

.footer-contact-item .icon {
  color: var(--champagne);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--champagne);
  border-color: var(--champagne);
  color: var(--white);
}

/* ============================================
   PAGE TEMPLATES
   ============================================ */
.page-hero {
  padding: 180px 0 80px;
  background: var(--cream);
  text-align: center;
}

.page-content {
  padding: var(--section-padding);
}

.page-content p {
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 20px;
  color: var(--charcoal-light);
}

/* ============================================
   WORDPRESS SPECIFIC
   ============================================ */
.wp-block-image img {
  height: auto;
}

.alignwide {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-description { margin: 0 auto 40px; }

  .hero-actions { justify-content: center; }

  .hero-visual { max-width: 500px; margin: 0 auto; }

  .hero-image-label { left: 0; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root { --section-padding: 64px 0; }

  .main-nav { display: none; }

  .menu-toggle { display: block; }

  .main-nav.active {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--ivory);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999;
  }

  .main-nav.active ul {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .main-nav.active a {
    font-size: 1rem;
  }

  .collections-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .why-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

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

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn { width: 100%; justify-content: center; }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}
