@font-face {
    font-family: "Agraham";
    src: url(agraham/Agraham.otf);

    font-family: "Antic";
    src: url(Antic/Antic-Regular.ttf);
    font-size: large;

    font-family: "ElaineKinandhita";
    src: url(elainekinandhita/ElaineKinandhita.ttf);

    font-family: "The Seasons";
    src: url(The\ Seasons\ Font/)
}

.julius-sans-one-regular {
    font-family: "Julius Sans One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.antic-regular {
    font-family: "Antic", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.livvic-thin {
    font-family: "Livvic", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.livvic-extralight {
    font-family: "Livvic", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.livvic-light {
    font-family: "Livvic", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.livvic-regular {
    font-family: "Livvic", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.livvic-medium {
    font-family: "Livvic", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.livvic-semibold {
    font-family: "Livvic", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.livvic-bold {
    font-family: "Livvic", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.livvic-black {
    font-family: "Livvic", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.livvic-thin-italic {
    font-family: "Livvic", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.livvic-extralight-italic {
    font-family: "Livvic", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.livvic-light-italic {
    font-family: "Livvic", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.livvic-regular-italic {
    font-family: "Livvic", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.livvic-medium-italic {
    font-family: "Livvic", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.livvic-semibold-italic {
    font-family: "Livvic", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.livvic-bold-italic {
    font-family: "Livvic", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.livvic-black-italic {
    font-family: "Livvic", sans-serif;
    font-weight: 900;
    font-style: italic;
}

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

body {
width: 100%;
font-family: "Antic", sans-serif;
background-color: #FFE7D4;
color: #4d2e1d;
line-height: 1.6;
min-height: 100vh;
display: flex;
flex-direction: column;
}

a {
text-decoration: none;
color: inherit;
}

header {
position: sticky;
top: 0;
z-index: 1000;
background-image: linear-gradient(to right, #FFE7D4, #FFCBA3);
background-repeat: no-repeat;
opacity: 95%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 5%;
margin: 2% 10%;
border-radius: 30px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo {
margin-top: 5px;
}

nav {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 10px;
}

nav a {
margin: 0 15px;
padding: 10px 15px;
border-radius: 10px;
background: #4d2e1d;
color: #fff;
font-family: "Livvic";
font-weight: 200;
font-size: 18px;
font-weight: light;
opacity: 100%;
display: inline-block;
transition: all 0.3s ease;
white-space: nowrap;
}

nav a:hover {
transform: translateY(-5%);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-btn {
background: #F8B9B1;
color: #4d2e1d;
margin: 0 15px;
padding: 10px 15px;
border-radius: 10px;
font-family: "Livvic";
font-weight: 200;
font-size: 18px;
text-decoration: none;
display: inline-block;
transition: all 0.3s ease;
white-space: nowrap;
}

.contact-btn:hover { 
transform: translateY(-5%);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

main {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
padding: 60px 5%;
position: relative;
overflow: hidden;
animation: fadeInUp 1s ease forwards;
}

.flowers {
    position: absolute;
    right: 0;
}

.flower2 {
    position: absolute;
    left: 0;
}

.contact-content {
position: relative;
z-index: 2;
text-align: center;
max-width: 800px;
width: 100%;
}

.contact-title {
font-size: 40px;
font-family: "Agraham";
font-weight: 400;
color: #4d2e1d;
margin-bottom: 40px;
}

.contact-card {
background: #4d2e1d;
border-radius: 20px;
padding: 40px;
margin-bottom: 40px;
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.contact-text {
color: white;
font-size: 30px;
font-family: "Livvic";
font-weight: 400;
margin-bottom: 30px;
line-height: 1.4;
}

.message-btn {
background: #F8B9B1;
color: #4d2e1d;
padding: 12px 30px;
border-radius: 25px;
font-family: "Livvic";
font-size: 20px;
text-decoration: none;
display: inline-block;
transition: all 0.3s ease;
border: none;
cursor: pointer;
}

.message-btn:hover {
transform: scale(1.05);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-section {
display: flex;
justify-content: center;
gap: 40px;
margin-top: 20px;
}

.social-section span {
    font-family: "Livvic";
    font-size: 20px;
}

.social-item {
display: flex;
align-items: center;
gap: 15px;
color: #4d2e1d;
text-decoration: none;
font-family: "Agraham", serif;
font-size: 20px;
transition: all 0.3s ease;
}

.social-item:hover {
transform: translateY(-3px);
}

.social-icon {
width: 50px;
height: 50px;
background: #4d2e1d;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 24px;
}

footer {
    background: #4d2e1d;
    color: white;
    text-align: center;
    padding: 30px 10px;
    font-family: "Antic";
}

.footer p {
    margin: 5px;
}

footer .social-icons a img {
    margin: 10px;
}

.social-icons a img {
    width: 25px;
    height: 25px;
    transition: transform 0.3s ease;
}

.social-icons a:hover img {
    transform: scale(1.1);
}

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

/* Tablet Styles */
@media (max-width: 800px) {
header {
    margin: 2% 5%;
    padding: 20px 3%;
    flex-direction: column;
    gap: 15px;
}

.logo img {
    width: 200px;
}

nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

nav a {
    padding: 8px 12px;
    font-size: 16px;
}

main {
    padding: 40px 3%;
}

.contact-title {
    font-size: 36px;
}

.contact-card {
    padding: 30px;
}

.contact-text {
    font-size: 18px;
}

.social-section {
    gap: 30px;
}

.social-item {
    font-size: 18px;
}

}

/* Mobile Styles */
@media (max-width: 600px) {
body {
    font-size: 14px;
}

header {
    width: calc(100% - 20px);
    margin: 10px;
    flex-direction: column;
    padding: 20px;
    border-radius: 20px;
    gap: 20px;
    text-align: center;
}

.logo img {
    width: 200px;
}

nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

nav a {
    width: 100%;
    max-width: 250px;
    padding: 15px 20px;
    font-size: 16px;
    margin: 0;
    border-radius: 15px;
    text-align: center;
    background: #4d2e1d;
    color: #fff;
}

.contact-btn {
    background: #F8B9B1 !important;
    color: #4d2e1d !important;
}

main {
    padding: 30px 15px;
}

.contact-title {
    font-size: 28px;
    margin-bottom: 30px;
}

.contact-card {
    padding: 25px 20px;
    border-radius: 15px;
}

.contact-text {
    font-size: 16px;
    margin-bottom: 25px;
}

.message-btn {
    padding: 10px 25px;
    font-size: 16px;
}

.social-section {
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.social-item {
    font-size: 18px;
    gap: 12px;
}

.social-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
}

footer {
    padding: 20px 15px;
    font-size: 12px;
}

.footer-social a {
    font-size: 18px;
    margin: 0 8px;
}
}

/* Extra Small Mobile */
@media (max-width: 400px) {
header {
    width: calc(100% - 10px);
    margin: 5px;
    padding: 15px;
}

.logo img {
    width: 150px;
}

nav a {
    max-width: 220px;
    padding: 12px 18px;
    font-size: 15px;
}

.contact-title {
    font-size: 40px;
}

.contact-card {
    padding: 20px 15px;
}

.contact-text {
    font-size: 15px;
}

.message-btn {
    padding: 8px 20px;
    font-size: 15px;
}

.social-item {
    font-size: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
}
}