@font-face {
    font-family: 'Brother';
    src: url('fonts/brother-bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

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

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Arial', sans-serif;
    background: linear-gradient(180deg, #FF5A6E 0%, #FF7A58 35%, #FFA048 70%, #FFB640 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow-x: hidden;
    padding: 2rem 0;
    position: relative;
}

main {
    width: 100%;
    max-width: 900px;
    padding: 2rem;
    position: relative;
    z-index: 10;
    text-align: center;
}

/* Floating icons */
.floating-icons {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.float-icon {
    position: absolute;
    width: clamp(70px, 10vw, 140px);
    opacity: 0.8;
    filter: brightness(0) invert(1);
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes floatAlt {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-25px) rotate(-5deg); }
}

/* Position each icon differently */
.float-1 {
    top: 10%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.float-2 {
    top: 20%;
    right: 8%;
    animation: floatAlt 7s ease-in-out infinite;
    animation-delay: 0.5s;
}

.float-3 {
    top: 45%;
    left: 3%;
    animation: float 8s ease-in-out infinite;
    animation-delay: 1s;
}

.float-4 {
    top: 60%;
    right: 5%;
    animation: floatAlt 6.5s ease-in-out infinite;
    animation-delay: 1.5s;
}

.float-5 {
    bottom: 15%;
    left: 10%;
    animation: float 7.5s ease-in-out infinite;
    animation-delay: 2s;
}

.float-6 {
    bottom: 25%;
    right: 12%;
    animation: floatAlt 8s ease-in-out infinite;
    animation-delay: 0.8s;
}

.float-7 {
    top: 35%;
    right: 15%;
    animation: float 6.8s ease-in-out infinite;
    animation-delay: 1.2s;
}

.float-8 {
    bottom: 10%;
    left: 15%;
    animation: floatAlt 7.2s ease-in-out infinite;
    animation-delay: 1.8s;
}

/* Header with logo */
.hero {
    margin-bottom: 2rem;
}

.header-logo {
    max-width: 100%;
    height: auto;
    width: clamp(300px, 80vw, 700px);
}

/* Tagline */
.tagline {
    margin: 2rem auto 3rem;
    max-width: 750px;
}

.tagline h2 {
    font-family: 'Brother', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.3;
    color: #FFF5E6;
}

/* Description text */
.description {
    max-width: 650px;
    margin: 0 auto 3rem;
}

.description p {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
}

/* Details section */
.details {
    margin: 1rem auto 3rem;
}

.details p {
    font-family: 'Brother', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: bold;
    text-transform: uppercase;
    margin: 0.5rem 0;
    color: #FFF5E6;
}

/* How to get there & Contact sections */
.how-to-get-there,
.contact-section {
    margin: 3rem auto;
    max-width: 700px;
}

.how-to-get-there h3,
.contact-section h3 {
    font-family: 'Brother', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: #FFF5E6;
}

.address {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.map-container {
    margin: 1.5rem auto;
    border-radius: 16px;
    overflow: hidden;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    border: 4px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.map-link {
    margin: 1rem 0 2rem;
}

.contact-info {
    margin-top: 1rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.contact-info p {
    margin: 0.5rem 0;
}

.contact-info a,
.map-link a {
    color: #FFF5E6;
    text-decoration: none;
    transition: border-color 0.3s;
}

.map-link a {
    font-weight: 600;
    border-bottom: 2px solid rgba(255, 245, 230, 0.4);
}

.map-link a:hover {
    border-color: rgba(255, 245, 230, 0.8);
}

.contact-info a {
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 245, 230, 0.3);
}

.contact-info a:hover {
    border-color: rgba(255, 245, 230, 0.7);
}

.info {
    margin-top: 3rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 500;
    opacity: 0.85;
    font-style: italic;
}

@media (max-width: 768px) {
    main { padding: 1rem; }
    .hero { margin-bottom: 2rem; }
    .tagline { margin: 1.5rem auto 2rem; }
    .details { margin-top: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}
