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

 :root {
     --primary: #F8E8E0;
     --secondary: #FFF8F0;
     --accentColor: #D4A574;
     --text-dark: #2D2D2D;
     --text-light: #6B6B6B;
     --white: #FFFFFF;
     --blush: #FCE4EC;
 }

 /* Navigation Bar */

 .navbar {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(10px);
     padding: 20px 40px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     z-index: 1000;
 }

 .logo {
     font-family: 'Playfair Display', serif;
     font-size: 36px;
     font-weight: bold;
     color: var(--accentColor);
     letter-spacing: 4px;
     text-decoration: none;
     transition: opacity 0.3s ease;
     flex-shrink: 0;
 }

 .logo:hover {
     opacity: 0.8;
 }

 .nav-links {
     display: flex;
     gap: 30px;
 }

 .nav-links a {
     text-decoration: none;
     color: var(--text-dark);
     font-weight: 400;
     font-size: 14px;
     transition: color 0.3s ease;
     letter-spacing: 1px;
 }

 .nav-links a:hover {
     color: var(--accentColor);
 }

 /* Mobile Menu Button */
 .mobile-menu-btn {
     display: none;
     background: none;
     border: none;
     cursor: pointer;
     padding: 10px;
     z-index: 1001;
     flex-shrink: 0;
 }

 .mobile-menu-btn .material-icons {
     font-size: 32px;
     color: var(--accentColor);
 }

 /* Mobile Menu Overlay */
 .mobile-menu-overlay {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(255, 255, 255, 0.98);
     z-index: 999;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     gap: 30px;
 }

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

 .mobile-menu-overlay a {
     font-family: 'Poppins', sans-serif;
     font-size: 28px;
     color: var(--text-dark);
     text-decoration: none;
     letter-spacing: 2px;
     transition: color 0.3s ease;
     padding: 15px 30px;
     min-width: 200px;
     text-align: center;
 }

 .mobile-menu-overlay a:hover {
     color: accentColor;
 }

 /* Hero Section */
 .hero {
     display: flex;
     min-height: 700px;
     position: relative;
     overflow: hidden;
     clip-path: ellipse(150% 100% at 50% 0%);
     background: linear-gradient(135deg, var(--secondary), var(--primary));
 }

 .hero-content {
     width: 65%;
     min-height: 700px;
     padding: 120px 80px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     text-align: center;
     position: relative;
 }

 .hero-image {
     width: 35%;
     min-height: 700px;
     background-image: url("../assets/margarida.jpeg");
     background-position: 30% center;
     background-size: contain;
     background-repeat: no-repeat;
 }

 .brand-name {
     display: flex;
     flex-direction: column;
     align-items: center;
     font-family: 'Poppins', sans-serif;
     font-size: clamp(64px, 8vw, 96px);
     font-weight: lighter;
     letter-spacing: 12px;
     max-width: 10ch;
     color: var(--text-dark);
     line-height: 1;
     text-transform: uppercase;
 }

 .brand-subtitle {
     text-align: center;
     margin-top: 20px;
     font-family: 'Poppins', sans-serif;
     font-size: 18px;
     font-weight: 300;
     color: var(--text-light);
     letter-spacing: 4px;
     text-transform: uppercase;
 }

 .brand-description {
     text-align: center;
     margin-top: 25px;
     font-family: 'Poppins', sans-serif;
     font-size: 18px;
     max-width: 700px;
     font-weight: 300;
     color: var(--text-light);
     letter-spacing: 0.5px;
     line-height: 1.7;
 }

 /* About Section */
 .about {
     padding: 50px 15px;
     background: var(--whi);
 }

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

 .section-title {
     font-family: 'Playfair Display', serif;
     font-size: 42px;
     text-align: center;
     margin-bottom: 50px;
     color: var(--text-dark);
     font-weight: 600;
 }

 .about-content {
     display: flex;
     gap: 50px;
     align-items: center;
 }

 .about-image {
     flex: 1;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
 }

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

 .about-text {
     flex: 1;
     /* font-family:myfont; */
 }

 .about-text p {
     color: var(--text-light);
     font-size: 16px;
     line-height: 1.8;
     margin-bottom: 20px;
 }

 .signature {
     font-family: 'BonVivant';
     font-size: 24px;
     margin-top: 30px;
     color: var(--accentColor);
     text-shadow:
         0.3px 0 currentColor,
         -0.3px 0 currentColor;
 }

 /* Contact Section */
 .contact {
     padding: 60px 40px;
     background: linear-gradient(135deg, var(--primary) 0%, var(--blush) 100%);
 }

 .contact-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 50px;
     margin-top: 40px;
 }

 .contact-info h3 {
     font-family: 'Playfair Display', serif;
     font-size: 28px;
     margin-bottom: 30px;
     color: var(--text-dark);
 }

 .contact-item {
     display: flex;
     align-items: center;
     gap: 20px;
     margin-bottom: 25px;
 }

 .contact-icon {
     width: 50px;
     height: 50px;
     background: var(--primary);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 .contact-icon .material-icons {
     color: accentColor;
     font-size: 24px;
 }

 .contact-details h4 {
     font-size: 16px;
     color: var(--text-dark);
     margin-bottom: 5px;
 }

 .contact-details p {
     color: var(--text-light);
     font-size: 14px;
 }

 .contact-image {
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
     height: 340px;
 }

 .contact-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: 50% 40%;
 }

 /* Services Hero */
 .services-hero {
     min-height: 400px;
     background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     overflow: hidden;
 }

 .services-hero-content {
     width: 100%;
     min-height: auto;
     padding: 120px 20px 60px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     text-align: center;
 }

 .page-title {
     font-family: 'Playfair Display', serif;
     font-size: 64px;
     font-weight: 700;
     color: var(--text-dark);
     letter-spacing: 6px;
     margin-bottom: 20px;
 }

 .page-subtitle {
     font-size: 16px;
     color: var(--text-light);
     font-weight: 300;
     letter-spacing: 2px;
 }

 /* Services Grid */
 .services-section {
     padding: 80px 40px;
     background: var(--white);
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
     margin-top: 0;
 }

 .service-card {
     background: var(--white);
     padding: 50px 35px;
     border-radius: 20px;
     text-align: center;
     transition: all 0.3s ease;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
     border: 1px solid rgba(212, 165, 116, 0.1);
 }

 .service-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 50px rgba(212, 165, 116, 0.2);
     border-color: accentColor;
 }

 .service-icon {
     width: 80px;
     height: 80px;
     background: var(--primary);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 25px;
     transition: all 0.3s ease;
 }

 .service-card:hover .service-icon {
     background: accentColor;
 }

 .service-icon .material-icons {
     font-size: 36px;
     color: accentColor;
     transition: color 0.3s ease;
 }

 .service-card:hover .service-icon .material-icons {
     color: var(--white);
 }

 .service-title {
     font-family: 'Playfair Display', serif;
     font-size: 24px;
     margin-bottom: 18px;
     color: var(--text-dark);
 }

 .service-description {
     color: var(--text-light);
     font-size: 15px;
     line-height: 1.7;
 }

 /* Gallery Hero */
 .gallery-hero {
     min-height: 400px;
     background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     overflow: hidden;
 }

 .gallery-hero-content {
     width: 100%;
     min-height: auto;
     padding: 120px 20px 60px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     text-align: center;
 }

 /* Gallery Grid */
 .gallery-section {
     padding: 80px 40px;
     background: var(--white);
 }

 .gallery-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 30px;
     margin-top: 0;
 }

 .gallery-item {
     position: relative;
     border-radius: 20px;
     overflow: hidden;
     height: 350px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
 }

 .gallery-item:hover {
     transform: translateY(-5px);
     box-shadow: 0 20px 50px rgba(212, 165, 116, 0.25);
 }

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

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

 .gallery-overlay {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     background: linear-gradient(to top, rgba(45, 45, 45, 0.8), transparent);
     padding: 30px 20px 20px;
     opacity: 0;
     transition: opacity 0.3s ease;
 }

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

 .gallery-title {
     font-family: 'Playfair Display', serif;
     font-size: 20px;
     color: var(--white);
     margin-bottom: 5px;
 }

 .gallery-category {
     font-size: 13px;
     color: rgba(255, 255, 255, 0.8);
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 /* Footer Section */
 .footer {
     background: var(--text-dark);
     color: var(--white);
     padding: 50px 40px 30px;
     text-align: center;
 }

 .footer-logo {
     font-family: 'Playfair Display', serif;
     font-size: 32px;
     margin-bottom: 20px;
     color: accentColor;
     letter-spacing: 5px;
 }

 .footer-text {
     color: rgba(255, 255, 255, 0.7);
     font-size: 13px;
     margin-bottom: 10px;
 }

 .social-links {
     display: flex;
     justify-content: center;
     gap: 20px;
     margin: 25px 0;
 }

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

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

 .copyright {
     color: rgba(255, 255, 255, 0.5);
     font-size: 12px;
     margin-top: 20px;
 }

 /* Fonts */
 @font-face {
     font-family: BonVivant;
     src: url(../assets/BonVivant.otf);
 }

 /* Mobile Responsive */
 @media (max-width: 768px) {
     .navbar {
         padding: 15px 20px;
         min-height: 70px;
     }

     .logo {
         font-size: 18px;
         letter-spacing: 1px;
     }

     .nav-links {
         display: none;
     }

     .mobile-menu-btn {
         display: block;
         padding: 8px;
         margin-left: 15px;
     }

     .mobile-menu-btn .material-icons {
         font-size: 28px;
     }

     .brand-name {
         font-size: 40px;
         letter-spacing: 5px;
     }

     .brand-subtitle {
         font-size: 12px;
         letter-spacing: 2px;
         margin-top: 15px;
     }

     .brand-description {
         font-size: 13px;
         margin-top: 20px;
         max-width: 100%;
     }

     .services-hero,
     .gallery-hero {
         min-height: 260px;
         padding: 100px 20px 50px;
     }

     .services-hero-content,
     .gallery-hero-content {
         width: 100%;
         min-height: auto;
         padding: 0;
         text-align: center;
         align-items: center;
         justify-content: center;
     }

     .service-card {
         padding: 30px 20px;
     }

     .page-title {
         font-size: 36px;
         letter-spacing: 2px;
     }

     .page-subtitle {
         font-size: 14px;
         letter-spacing: 1px;
     }

     .services-section,
     .gallery-section {
         padding: 50px 20px;
     }

     .gallery-item {
         height: 260px;
     }
 }

 /* Small Mobile */
 @media (max-width: 480px) {
     .navbar {
         padding: 12px 15px;
         min-height: 60px;
     }

     .logo {
         font-size: 16px;
         letter-spacing: 1px;
     }

     .hero {
         min-height: 480px;
     }

     .nav-links {
         display: none;
     }

     .mobile-menu-btn {
         display: block;
     }

     .hero {
         /* flex-direction: column; */
         min-height: auto;
         clip-path: none;
     }

     .hero-content {
         width: 100%;
         min-height: auto;
         padding: 110px 24px 32px;
         align-items: center;
         text-align: center;
         justify-content: center;
     }

     .hero-image {
         width: 100%;
         min-height: 420px;
         margin-left: 0;
         background-size: cover;
         background-position: center top;
     }

     .brand-name {
         font-size: 28px;
         letter-spacing: 4px;
     }

     .brand-subtitle {
         font-size: 12px;
     }

     .section-title {
         font-size: 26px;
     }

     .about-image img {
         height: 280px;
     }

     .about-text p {
         font-size: 14px;
     }

     .contact {
         padding: 40px 15px;
     }

     .contact-content {
         grid-template-columns: 1fr;
         gap: 20px;
     }

     .contact-image {
         min-height: 180px;
         width: 100%;
         border-radius: 14px;
     }

     .contact-image img {
         width: 100%;
         height: 100%;
         object-fit: cover;
         object-position: center;
         display: block;
     }

     .page-title {
         font-size: 28px;
         letter-spacing: 2px;
     }

     .services-grid,
     .gallery-grid {
         grid-template-columns: 1fr;
         gap: 20px;
     }

     .gallery-item {
         height: 220px;
     }
 }