*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth !important;
}
html, body {
    height: 100%;
    overflow-x: hidden;      /* prevents any horizontal scrollbar */
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background:conic-gradient(from 45deg at 70% 70%, #094d5e 0%, #20B2AD 100%);
    
    background-attachment: fixed;
    background-size: cover;
    min-height: 100vh;
}

main { display: flex; flex-direction: column; }

.section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 2rem;
}

.content {
    max-width: 900px;
    text-align: center;
}

/* Typography */
h3 {
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: left;
    letter-spacing: 5px;
    color: rgb(202, 144, 69);
    margin-bottom: 0.5rem;
}

.hero_logo {
    max-width: 80%;
    height: auto;
    margin: 2rem 0 3rem 0;           /* spacing instead of h1 margins */
    filter: drop-shadow(0 4px 20px rgba(0,0,0,1));
    transition: transform 0.4s ease;
}

h1 {
    text-align: left;
    font-size: 5rem;
    margin: 0 0 1.5rem 0;
    line-height: 1.1;
}

p {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    color: rgb(202, 144, 69);
}

/* Buttons – base style */
button {
    padding: 1.2rem 3rem;
    font-size: 2rem;
    font-weight: 600;
    background: rgb(161, 114, 52);
    color: #fff;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

button:hover {
    background: rgb(221, 165, 93);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Section backgrounds + text contrast fixes */
.transparent      { background: transparent; }
.solid            { background: linear-gradient(to left, #1F2026, #3F497F); }
.solid h1, .solid p { color: #ffffff; }

.semi-transparent { background: linear-gradient(to left, #000000C7, #3D362B59);  backdrop-filter: blur(5px);}
.semi-transparent h1, .semi-transparent p { color: #ffffff; }

/* HERO BUTTON ANIMATION – now actually works */
#hero-button {
    position: relative;
    overflow: hidden;
}

#hero-button:hover {
    transform: scale(1.05);
}


/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 4.5rem; }
    p  { font-size: 1.5rem; }
    button { font-size: 1.6rem; padding: 1rem 2.5rem; }
}
@supports (-webkit-touch-callout: none) {
    .section {
        min-height: -webkit-fill-available;   /* iOS Safari fix */
        min-height: 100dvh;                   /* modern standard */
    }
}