/* Custom styles */
body {
    scroll-behavior: smooth;
}

/* Sharp edges for all elements */
* {
    border-radius: 0 !important;
}

/* Override Tailwind's rounded classes */
.rounded, .rounded-lg {
    border-radius: 0 !important;
}

/* Hero section padding adjustment */
@media (min-width: 768px) {
    .pt-32 {
        padding-top: 10rem;
    }
}

/* Mobile menu animation */
#mobile-menu {
    transition: all 0.3s ease;
}

/* Gold underline for headings */
.heading-underline {
    position: relative;
    display: inline-block;
}

.heading-underline:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: -5px;
    left: 0;
    background-color: #D4AF37;
}

/* Button hover effects */
.btn-gold {
    transition: all 0.3s ease;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
}

/* Section padding consistency */
section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

@media (min-width: 768px) {
    section {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }
}

/* Ukośne ścięcie lewej strony */
.clip-slant {
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
}

/* Opcjonalnie dla większego kąta — 15° */
@media (min-width: 768px) {
  .clip-slant {
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
  }
}

