/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}


body {
    transform: translateZ(0);
    background: #87CFEB;
    background: linear-gradient(0deg, #87CFEB, #1E3D72);
    font-family: Arial, sans-serif;
    color: white;
    height: 100vh;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.container {
    text-align: center;
    padding: 40px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
    border: 4px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.profile-photo:hover {
    transform: scale(1.05);
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-btn {
    background-color: white;
    color: #4682B4;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.contact-btn:hover {
    background: -webkit-linear-gradient(45deg, #b10b16, #e6721a, #e6e600, #34a634, #3b3bc6, #431875, #851ae6);
    background: -moz-linear-gradient(45deg, #b10b16, #e6721a, #e6e600, #34a634, #3b3bc6, #431875, #851ae6);
    background: linear-gradient(45deg, #b10b16, #e6721a, #e6e600, #34a634, #3b3bc6, #431875, #851ae6);
    background-size: 400% 400%;
    -webkit-animation: rainbow-throb 0.8s ease-in-out infinite, throb-scale 1s ease-in-out infinite;
    animation: rainbow-throb 0.8s ease-in-out infinite, throb-scale 1s ease-in-out infinite;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.contact-btn:active {
    transform: translateY(0);
}

@keyframes rainbow-throb {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@-webkit-keyframes rainbow-throb {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes throb-scale {
    0% { transform: translateY(-2px) scale(1); }
    50% { transform: translateY(-2px) scale(1.08); }
    100% { transform: translateY(-2px) scale(1); }
}

@-webkit-keyframes throb-scale {
    0% { -webkit-transform: translateY(-2px) scale(1); transform: translateY(-2px) scale(1); }
    50% { -webkit-transform: translateY(-2px) scale(1.08); transform: translateY(-2px) scale(1.08); }
    100% { -webkit-transform: translateY(-2px) scale(1); transform: translateY(-2px) scale(1); }
}

/* Grass Effect */
.grass {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, #2d5016 0%, #4a7c28 70%, transparent 100%);
    z-index: -1;
}

.grass::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        /* Tall grass blades */
        linear-gradient(85deg, transparent 30%, #4a7c28 31%, #4a7c28 33%, transparent 34%),
        linear-gradient(87deg, transparent 20%, #5a8c35 21%, #5a8c35 22%, transparent 23%),
        linear-gradient(83deg, transparent 45%, #3d6b1f 46%, #3d6b1f 48%, transparent 49%),
        linear-gradient(89deg, transparent 60%, #6ba042 61%, #6ba042 62%, transparent 63%),
        linear-gradient(86deg, transparent 75%, #4a7c28 76%, #4a7c28 77%, transparent 78%),
        linear-gradient(88deg, transparent 10%, #5a8c35 11%, #5a8c35 12%, transparent 13%),
        linear-gradient(84deg, transparent 35%, #3d6b1f 36%, #3d6b1f 37%, transparent 38%),
        linear-gradient(82deg, transparent 80%, #6ba042 81%, #6ba042 82%, transparent 83%),
        linear-gradient(90deg, transparent 25%, #4a7c28 26%, #4a7c28 27%, transparent 28%),
        linear-gradient(81deg, transparent 55%, #5a8c35 56%, #5a8c35 57%, transparent 58%);
    background-size: 
        8px 80px, 12px 95px, 6px 70px, 10px 85px, 9px 75px,
        7px 90px, 11px 65px, 5px 100px, 13px 80px, 8px 88px;
    background-position: 
        0% 100%, 15% 100%, 25% 100%, 35% 100%, 50% 100%,
        60% 100%, 70% 100%, 80% 100%, 90% 100%, 95% 100%;
    background-repeat: repeat-x;
}

.grass::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        /* Short grass blades */
        linear-gradient(88deg, transparent 5%, #6ba042 6%, #6ba042 7%, transparent 8%),
        linear-gradient(86deg, transparent 18%, #5a8c35 19%, #5a8c35 20%, transparent 21%),
        linear-gradient(92deg, transparent 42%, #4a7c28 43%, #4a7c28 44%, transparent 45%),
        linear-gradient(84deg, transparent 67%, #3d6b1f 68%, #3d6b1f 69%, transparent 70%),
        linear-gradient(87deg, transparent 85%, #6ba042 86%, #6ba042 87%, transparent 88%);
    background-size: 
        4px 45px, 6px 55px, 5px 40px, 7px 50px, 4px 48px;
    background-position: 
        8% 100%, 22% 100%, 48% 100%, 73% 100%, 88% 100%;
    background-repeat: repeat-x;
}

/* Animated Clouds */
.clouds {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    background: transparent;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    opacity: 0.7;
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50px;
}

.cloud1 {
    width: 80px;
    height: 40px;
    top: 15%;
    left: -120px;
    animation: float-cloud 25s infinite linear;
}

.cloud1::before {
    width: 50px;
    height: 30px;
    top: -15px;
    left: 10px;
}

.cloud1::after {
    width: 60px;
    height: 35px;
    top: -10px;
    right: 10px;
}

.cloud2 {
    width: 60px;
    height: 30px;
    top: 25%;
    left: -100px;
    animation: float-cloud 30s infinite linear;
    animation-delay: -10s;
}

.cloud2::before {
    width: 40px;
    height: 25px;
    top: -12px;
    left: 8px;
}

.cloud2::after {
    width: 45px;
    height: 28px;
    top: -8px;
    right: 8px;
}

.cloud3 {
    width: 100px;
    height: 50px;
    top: 8%;
    left: -140px;
    animation: float-cloud 35s infinite linear;
    animation-delay: -20s;
}

.cloud3::before {
    width: 65px;
    height: 40px;
    top: -20px;
    left: 15px;
}

.cloud3::after {
    width: 70px;
    height: 45px;
    top: -15px;
    right: 15px;
}

@keyframes float-cloud {
    0% {
        left: -200px;
    }
    100% {
        left: calc(100% + 200px);
    }
}

@-webkit-keyframes float-cloud {
    0% {
        left: -200px;
    }
    100% {
        left: calc(100% + 200px);
    }
}

