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

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root{
    --primary: #1f3242;
    --secondary: #2fb19d;
    --third-color: #f2b632;
    --primary-light: rgba(31, 50, 66, 0.1);
    --secondary-light: rgba(47, 177, 157, 0.1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem 0;
    line-height: 1.2;
    font-weight: 700;
}

h2{
    border-bottom: 2px solid rgba(0,0,0,0.1);
    font-family: 'Lato', Helvetica, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-bottom: 0.75rem;
    margin-bottom: 2rem;
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

p{
    text-align: left;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

ul {
    list-style: none;
}

ul li{
    margin: 0.75rem 0;
    line-height: 1.6;
}

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

input[type="image"] {
    border: 0;
}

section{
    padding: 4rem 1.25rem;
}

section.hero {
    padding: 0;
    margin: 0;
}
section#about {
    background: var(--primary);
    color: white;
}
section#about h2 {
    color: white;
}
section#about p {
    color: white;
}
section#about a {
    color: white;
}
/* container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.25rem;
}

.center{
    text-align: center;
}

.relative{
    position: relative;
}

/* section colors */
.dark {
    color: white;
    background: linear-gradient(175deg, var(--primary), rgb(63, 113, 154), var(--secondary));
    position: relative;
}

.dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(47, 177, 157, 0.15), transparent 50%);
    pointer-events: none;
}

header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), transparent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: 70px;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

header a.navbar-logo {
    color: white;
    display: inline-block;
    font-size: 2rem;
    margin: 12px 20px;
    transition: var(--transition);
    text-decoration: none;
}

header a.navbar-logo:hover {
    transform: scale(1.05);
}

header a.navbar-logo .logo-text {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

header.scrolled {
    background: var(--primary);
    box-shadow: var(--shadow-md);
}

/* nav common */
nav{
    display: inline-block;
    position: absolute;
    right: 80px;
    top: 12px;
}

nav ul{
	list-style: none;
}

nav ul li a{
    border-radius: 25px;
	color: white;
	display: block;
	padding: 8px 18px;
	text-align: left;
	text-decoration: none;
	white-space: nowrap;
    transition: var(--transition);
    font-weight: 500;
    letter-spacing: 0.02em;
}

nav ul li:last-child a{
    background: var(--primary);
    box-shadow: var(--shadow-sm);
}

nav ul li a:hover{
	background: var(--third-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

nav ul li a.active{
	background: var(--third-color);
    box-shadow: var(--shadow-sm);
}

/* nav desktop */
nav ul.desktop{
    display: none;
}

nav ul.desktop li{
	display: inline-block;
	position: relative;
    margin: 0 4px;
}

/* phone */
nav .phone{
    color: white;
    font-size: 1.5rem;
    position: fixed;
    right: 70px;
    top: 18px;
    z-index: 1001;
    transition: var(--transition);
    padding: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

nav .phone:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* nav mobile */
nav .hamburger{
	color: white;
    cursor: pointer;
	font-size: 2rem;
	position: fixed;
	right: 20px;
    top: 18px;
	z-index: 1001;
    transition: var(--transition);
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

nav .hamburger:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

nav ul.mobile{
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: block;
    height: 100vh;
    right: -200%;
    padding: 90px 30px 30px;
    position: fixed;
    overflow: auto;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav ul.mobile.active {
    right: 0;
}

nav ul.mobile li{
	display: block;
	position: relative;
    margin: 1rem 0;
}

nav ul.mobile li a {
    font-size: 1.25rem;
    padding: 12px 24px;
    border-radius: 12px;
    margin: 0 auto;
    max-width: 300px;
}

.navbar-logo img{
    margin-left: 20px;
    width: 200px;
}

.rotate {
    transform: rotate(180deg);
    transition: .3s;
}

.rotate-backwards {
    transform: rotate(-180deg);
    transition: .3s;
}


/* hero */
.hero {
    color: #fff;
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: none;
}

.hero__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 1;
}

.hero__container__image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    margin: 0;
    padding: 0;
}

.color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(105, 116, 87, 1),
        rgba(213, 173, 127, 1)
    );
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 1;
    margin: 0;
    padding: 0;
}

.hero__container__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 1.5s ease;
    transform: scale(1.1);
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    margin: 0;
    padding: 0;
}

.hero__container__image img.active {
    opacity: 1;
}

/* zoom and pan effects */
.hero__container__image img.zoom-effect {
    animation: zoom 20s linear infinite;
}

.hero__container__image img.zoomout-effect {
    animation: zoomout 20s linear infinite;
}

.hero__container__image img.pan-effect {
    animation: pan 20s linear infinite;
}

.hero__container__image img.panr-effect {
    animation: panr 20s linear infinite;
}

.hero__container__image img.pant-effect {
    animation: pant 20s linear infinite;
}

.hero__container__image img.panb-effect {
    animation: panb 20s linear infinite;
}

@keyframes zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

@keyframes zoomout {
    0% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes pan {
    0% { transform: translateX(0) scale(1.1);}
    100% { transform: translateX(-10%) scale(1.5);}
}

@keyframes panr {
    0% { transform: translateX(0) scale(1.1);}
    100% { transform: translateX(10%) scale(1.5);}
}

@keyframes pant {
    0% { transform: translateY(0) scale(1.5);}
    100% { transform: translateY(-10%) scale(1.5);}
}

@keyframes panb {
    0% { transform: translateY(0) scale(1.5);}
    100% { transform: translateY(10%) scale(1.5);}
}

.hero__container__text {
    text-align: center;
    padding: 0 1.5rem;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__container__text__logo {
    width: 150px;
    margin: 0 auto 1.5rem;
    filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    transition: var(--transition);
    display: block;
}

.hero__container__text__logo:hover {
    transform: scale(1.05);
}

.hero__container__text__title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.02em;
}

.hero__container__text__subtitle {
    font-family: 'Saira', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
}

.hero__container__text__button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--beige);
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.hero__container__text__button:hover {
    background-color: var(--brown);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.surfboard-pic {
    display: block;
    transition: transform 2.5s ease-in-out;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15));
}

@keyframes floating {
    0%, 100% { transform: rotate(-0.5deg); }
    50% { transform: rotate(0.5deg); }
}

.surfboard-pic:hover {
    animation: floating 1s ease-in-out infinite alternate;
    transform: scale(1.05);
}

/* virtuodigital custom modal */
.modal {
    background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    height: 100vh;
    left: 0;
    overflow: scroll;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal.active {
    display: flex;
}

/* modal content */
.modal-content {
    background-color: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    margin: 20px auto;
    position: relative;
	text-align: center;
    overflow: auto;
    max-width: 600px;
    width: 95%;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 90vh;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-gallery .modal-content{
    max-width: 90%;
}

.modal-content .close {
    color: #666;
    cursor: pointer;
    font-size: 32px;
    font-weight: bold;
    position: absolute;
    left: 20px;
    top: 15px;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
}

.modal-content .close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000;
    transform: rotate(90deg);
}

.modal-content .modal-block{
    display: block;
    text-align: left;
    line-height: 1.6;
}

.modal-block.content{
    padding: 40px;
    padding-top: 70px;
}

.modal-block.content img{
    width: 100%;
    border-radius: 12px;
    margin: 1rem 0;
    box-shadow: var(--shadow-md);
}

.modal-content .yes-no{
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.modal-content .yes-no a{
    background: var(--primary);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    margin: 10px;
    padding: 14px 28px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.modal-content .yes-no a:hover{
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* modal form */
form{
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 600px;
    padding: 2rem;
    gap: 1rem;
}

form label{
    display: block;
    margin-left: 5px;
    width: 100%;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

form label.not-hum{
    border-radius: 12px;
    margin: 5px 0 10px 0;
    display: block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 12px;
    color: white;
}

form label img{
    margin-left: 10px;
}

form select, select#item-options{
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    margin-bottom: 10px;
    padding: 14px 18px;
    width: 100%;
    transition: var(--transition);
    background: white;
    font-family: inherit;
}

form select:focus, select#item-options:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px var(--secondary-light);
}

form input{
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    margin-bottom: 10px;
    padding: 14px 18px;
    width: 100%;
    transition: var(--transition);
    font-family: inherit;
}

form input:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px var(--secondary-light);
}

form input[type="submit"]{
    background: var(--primary);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    margin: 0;
    padding: 16px 32px;
    text-transform: uppercase;
    transition: var(--transition);
    font-weight: 600;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    margin-top: 1rem;
}

form input[type="submit"]:hover{
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

form input[type="submit"] i{
    font-size: 2rem;
    margin-bottom: 10px;
}

.hnypot-email{
    display: none;
}

/* gallery thumbnails grid */
.thumbs.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
    width: 100%;
}

@media (min-width: 600px) {
    .thumbs.gallery {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 1.5rem;
    }
}

@media (min-width: 900px) {
    .thumbs.gallery {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 2rem;
    }
}

/* gallery modal */
img.thumb{
    border-radius: 12px;
    cursor: pointer;
    margin: 0;
    max-width: 100%;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    position: relative;
    transition: var(--transition);
    transform: scale(1);
    z-index: 0;
    box-shadow: var(--shadow-sm);
}

img.thumb:hover{
    transform: scale(1.3);
    animation: scale-floating 1s ease-in-out 0.2s infinite alternate;
    z-index: 1;
    box-shadow: var(--shadow-lg);
}

/* Keyframes for floating animation */
@keyframes scale-floating {
    0%, 100% { 
        transform: scale(1.3) rotate(-0.5deg);
    }
    50% { 
        transform: scale(1.3) rotate(0.5deg);
    }
}

.img-wrapper {
    overflow: hidden;
    position: relative;
    max-height: 90vh;
    border-radius: 12px;
}

.gallery-caption {
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
    bottom: 0;
    color: white;
    font-size: 1.2rem;
    padding: 20px;
    position: absolute;
    text-align: center;
    width: 100%;
    border-radius: 0 0 12px 12px;
}

.modal-gallery-container {
    position: relative;
    width: 100%;
}

.gallery-arrow {
    cursor: pointer;
    padding: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    color: #fff;
    z-index: 101;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.gallery-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.gallery-arrow.left {
    left: 20px;
}

.gallery-arrow.right {
    right: 20px;
}

.modal-gallery-container img {
    width: 100%;
    display: none;
    border-radius: 12px;
}

.modal-gallery-container img.active {
    display: block;
}

/* reservation bar */
.paypal-btns{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem auto;
    max-width: 700px;
    gap: 1rem;
}

.paypal-btns a, #feedback-prev, #feedback-next, .call-to-action-button{
    background: var(--primary);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    margin: 10px;
    padding: 24px 32px;
    text-transform: uppercase;
    transition: var(--transition);
    font-weight: 600;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

#feedback-prev, #feedback-next{
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: absolute;
    margin: 0;
    top: 33%;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#feedback-prev{
    left: 20px;
}

#feedback-next{
    right: 20px;
}

.paypal-btns a{
    text-align: center;
    width: 160px;
    transform: translateY(0);
    transition: opacity 0.6s, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.paypal-btns a:hover, #feedback-prev:hover, #feedback-next:hover, .call-to-action-button:hover{
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.paypal-btns a i{
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: block;
}

.paypal-button-container{
    width: 100%;
}

/* split in half */
.split-2 {
    display: inline-block;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
    vertical-align: middle;
    text-align: left;
}

.split-2 img {
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.split-2 img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* testimonials */
#testimonial-slider{
    height: 220px;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
}

.testimonial {
    display: block;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2rem;
}

.testimonial.hide {
    pointer-events: none; 
    transform: scale(0.95) translateY(20px);
}

.testimonial.show {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0);
}

/* more content buttons */
.action-btn{
    background: white;
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    border: 2px solid rgba(0,0,0,0.15);
    color: #333;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: 8px;
    transition: var(--transition);
    letter-spacing: 0.05em;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.action-btn:hover{
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.action-btn.white{
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.action-btn.white:hover{
    background: white;
    color: var(--primary);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.item{
    margin: 1.5rem 0 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    border-left: 4px solid var(--secondary);
}

.item h3{
    margin: 0 0 0.75rem 0;
    color: var(--primary);
    font-size: 1.4rem;
}

.item p {
    margin-bottom: 0.5rem;
}

/* cards */
.card{
    background: #fff;
    color: #333;
    cursor: pointer;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: inline-block;
    margin: 1rem;
    max-width: 320px;
    overflow: hidden;
    position: relative;
    text-align: center;
    width: 100%;
    transition: var(--transition);
    vertical-align: top;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--third-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover{
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card .card-img{
    height: 240px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
}

.card .card-img img{
    height: 100%;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    transition: var(--transition);
}

.card:hover .card-img img {
    transform: translate(-50%, -50%) scale(1.1);
}

.card .card-content{
    padding: 1.75rem;
}

.card .card-content h3{
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 1.5rem;
}

.card .card-content p{
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: left;
    color: #555;
}

.the-grounds{
    display: block;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

#parallax {
    display: none;
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 16px;
}

#parallax picture {
    position: absolute;
    width: 100%;
    top: 0;
}

#parallax picture img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

/* footer */
.footer {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    color: #fff;
    padding: 3rem 1.25rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--third-color));
}

.contact-form, .contact-info {
    display: block;
    width: 100%;
    margin-bottom: 2rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input, .contact-form textarea {
    margin-bottom: 0;
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(47, 177, 157, 0.2);
}

.contact-form textarea{
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    background: var(--primary);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    margin-top: 0.5rem;
}

.contact-form button:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contact-info h2 {
    border-bottom-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.social-networks{
    margin-top: 2rem;
}

.social-networks a {
    display: inline-block;
    font-size: 2.5rem;
    margin-right: 1.5rem;
    color: white;
    transition: var(--transition);
    padding: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-networks a:hover {
    background: var(--secondary);
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-md);
}

@media (min-width: 900px) {
    /* nav */
    nav ul.desktop{
        display: block;
    }
    nav ul.mobile, nav .hamburger, nav .phone{
        display: none;
    }

    .split-2 {
        width: 47%;
    }

    /* Better balance for about section */
    #about .split-2:first-child {
        width: 40%;
    }

    #about .split-2:last-child {
        width: 58%;
    }

    #about .split-2 p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 0.875rem;
    }

    #about .split-2 h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    #about .split-2 img {
        width: 100%;
        max-width: 100%;
    }

    .about-content {
        position: relative;
    }

    .read-more-btn {
        background: transparent;
        border: 2px solid var(--secondary);
        color: var(--secondary);
        padding: 10px 24px;
        border-radius: 6px;
        font-size: 0.95rem;
        font-weight: 600;
        cursor: pointer;
        margin-top: 1rem;
        transition: var(--transition);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .read-more-btn:hover {
        background: var(--secondary);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(47, 177, 157, 0.3);
    }

    .about-full {
        margin-top: 1rem;
    }

    img.thumb{
        max-width: 250px;
    }

    #parallax {
        display: block;
        height: 400px;
    }
    .the-grounds{
        display: none;
    }
    .contact-form, .contact-info {
        display: inline-block;
        width: 48%;
        vertical-align: top;
        margin-right: 2%;
    }

    .contact-info {
        margin-right: 0;
    }

    section {
        padding: 5rem 2rem;
    }

    .container {
        padding: 3rem 2rem;
    }

    h2 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1200px) {
    section {
        padding: 6rem 3rem;
    }

    .container {
        padding: 4rem 3rem;
    }
}
