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

/* Custom Fonts */
@font-face {
    font-family: "AGG";
    src: url(./fonts/AGG/ITC\ Avant\ Garde\ Gothic\ Pro-Book.otf);
}

@font-face {
    font-family: "AON";
    src: url(/fonts/AON/AON.otf);
}

/* Root Variables */
:root {
    --bg-color-light: #fffff9;
    --bg-color-dark: #131313;
    --text-color-light: black;
    --text-color-dark: white;
    --main-color: #e47239;
    /* --main-color: #bd44fa; */
}

span {
    color: var(--main-color);
}        

/* Body and General Styling */
body {
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    font-family: sans-serif;
}

/* ABOUT TEXT Styles */
.about-me h3 {
    font-family: "AON", sans-serif;
    font-weight: 400;
    font-size: 45px;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    display: none;
}
.about-me h2 {
    font-family: Ubuntu, sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    color: rgb(26, 27, 31);    
    margin-bottom: 10px;
}
.about-me h1 {
    font-family: "AON", sans-serif;
    font-weight: 400;
    font-size: 50px;
    text-transform: uppercase;
    margin-bottom: 20px;
    width: 100%;
}
.paragraph span {
    color: var(--main-color); 
    font-family: inherit;
}
.paragraph a {
    font-family: "AGG";
    color: var(--main-color); 
    text-decoration: underline; 
}
.about-me p {
    font-family: "AGG";
    font-size: 16px;
    line-height: 1.6em;
    padding-bottom: 15px;
    color: rgb(71, 71, 71);
}

/* ABOUT SECTION */
.about-me {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 6% 20px;
    margin-top: 30px;
    max-width: 1500px;
    width: 100%;
}
.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.about-text, .about-image {
    flex: 1;
}
.about-image {
    display: flex; 
    align-items: center; 
    justify-content: right; 
}
.about-image img {
    width: 80%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}

/* Responsive  ABOUT Styles */
@media (max-width: 1024px) {
    .about-me h2 {
        font-size: 16px;  
        margin-bottom: 10px;
    }
    .about-me h1 {
        font-size: 36px;
        margin-bottom: 35px;
    }
    .about-me p {
        font-size: 14px;
        line-height: 1.6em;
        padding-bottom: 15px;
    }

    .about-me {
        padding-right: 8%;
        padding-left: 8%;
        padding-top: 50px;
        padding-bottom: 20px;
        margin-top: 30px;
    }

    .about-image img {
        width: 80%;
        height: auto;
    }
}
@media (max-width: 870px) {
    .about-image img {
        width: 90%;
        height: auto;
    }
    .about-me h1 {
        font-size: 33px;
        margin-bottom: 35px;
    }
}
@media (max-width: 768px) {
    .about-me h2 {
        font-size: 12px;  
        margin-bottom: 10px;
    
    }
    .about-me h1 {
        font-size: 30px;
        margin-bottom: 20px;
    }
    .about-me p {
        font-size: 13px;
        line-height: 1.6em;
        padding-bottom: 15px;
    }

    .about-me {
        padding-right: 5%;
        padding-left: 5%;
        padding-top: 50px;
        padding-bottom: 20px;
        margin-top: 30px;
    }
        
    .about-image {
        flex: 1;
        display: flex; 
        align-items: center; 
        justify-content:right; 
    }
    
    .about-image img {
        width: 90%;
        height: auto;
    }
}
@media (max-width: 690px) {
    .about-me h1 {
        font-size: 27px;
        margin-bottom: 20px;
    }
}
@media (max-width: 520px) {
    .about-me h2 {
        font-size: 10px;  
        margin-bottom: 10px;
    
    }
    .about-me h1 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .about-me p {
        font-size: 10px;
        line-height: 1.6em;
        padding-bottom: 15px;
    }
    .about-me {
        padding-right: 8%;
        padding-left: 8%;
        padding-top: 50px;
        padding-bottom: 20px;
        margin-top: 30px;
    }
    .about-image {
        flex: 1;
        display: flex; 
        align-items: center; 
        justify-content:right; 
    }
    
    .about-image img {
        width: 80%;
        height: auto;
    }
}
@media (min-width: 468px) {
    .title1 {
        display: none;
    }
}
@media (max-width: 468px) {
    .about-me {
        margin-top: 0px;
        padding-top: 20px;
    }
    .about-me h3 {
        display: block;
        font-weight: 400;
        font-size: 30px;
        margin-bottom: 0px;
        margin-top: 0px;
        text-align: center !important;
        line-height: 2.2rem;
    }
    .about-container {
        flex-direction: column; 
        align-items: flex-start; 
    }
    .about-image {
        order: 1; 
        flex: 1; 
        display: flex;
        justify-content: center;
        align-items: center; 
        margin-top: 20px; 
    }
    
    .about-image img {
        width: 70%; 
        height: auto;
        object-fit: cover; 
        display: block; 
    }
    
    .about-text {
        order: 3; 
        padding-top: 20px;
    }
    .about-me p {
        font-size: 13px;
        line-height: 1.6em;
        margin: 0;
        padding-bottom: 15px;
    }
    h2 {
        display: none; 
    }
    .title {
        display: none;
    }

}
/* GALLERY TEXT STYLES */
.caption {
    text-align: left;
    font-family: "Amatic SC", sans-serif;
    font-weight: 700;
    font-style: normal;    
    font-size: 70px; 
    text-transform: uppercase;
    margin: 0px 0;
    color: rgb(32, 32, 32);
    padding-left: 10px;
}
.caption2 {
    text-align: right;
    font-family: "Amatic SC", sans-serif;
    font-weight: 700;
    font-style: normal;    
    font-size: 70px; 
    text-transform: uppercase;
    margin: 0px 0;
    padding-right: 20px;
    color: rgb(32, 32, 32);
}

/* GALLERY SECTION */
.gallery {
    max-width: 1500px;
    /* background-color: red; */
    column-count: 3; 
    column-gap: 25px; 
    margin-top: 50px;
    width: 100%;
    padding-right: 6%;
    padding-left: 6%;
    padding-top: 5%;
}
.gallery-item {
    position: relative;
    margin-bottom: 35px;
    border-radius: 15px;
    overflow: hidden;
    break-inside: avoid;
}
.gallery-item img {
    width: 100%;
    display: block;
}

.arrow {
    display: block;
    margin: auto;
    margin-top: 0;
    width: 40%;
    height: auto;
    transform: rotate(-20deg);
    gap: 0;
    padding-bottom: 20px;
}

/* GALLERY OVERLAY SECTION */
.overlay2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 0, 0, 0.9);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    text-align: center;
    padding: 15px;
    box-sizing: border-box; 
}

.gallery-item:hover .overlay2 {
    opacity: 1;
}

.overlay2 h3 {
    font-family: "AGG";
    font-size: 16px; 
    margin: 5px 0;
    text-transform: uppercase;
}

.overlay2 p {
    font-size: 14px; 
    margin: 0;
    padding: 10px;
    line-height: 1.3;
}


/* RESPONSIVE TEXT */
@media (max-width: 768px) {
    .overlay2 h3 {
        font-size: 14px; 
    }

    .overlay2 p {
        font-size: 12px; 
    }
    .caption, .caption2 {
        font-size: 55px;
    }
}

@media (max-width: 480px) {
    .overlay2 h3 {
        font-size: 12px;
    }

    .overlay2 p {
        font-size: 10px; 
    }
    .caption, .caption2 {
        font-size: 35px;
    }
}
/* RESPONSIVE LAYOUT */
@media (max-width: 768px) {
    .gallery {
        column-count: 2;
    }
}

@media (max-width: 420px) {
    .gallery {
        column-count: 1;
    }
    .arrow {
        display: none;
    }
    .gallery {
        margin: 20px;
    }

    .gallery-item1 {
        display: flex;
        justify-content: center; 
        align-items: center;    
        padding-bottom: 10px;
    }
    .caption, .caption2 {
        font-size: 30px;
        padding: 0;
    }
    .caption2 {
        padding-left: 5px;
    }
}
/* FOOTER */
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 200px;
    margin-bottom: 40px;
    padding-left: 6%;
    padding-right: 6%;
    position: relative;
    bottom: 0;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  
  .footer-text {
    display: flex;
    flex-direction: column;
    text-align: left;
  }
  
  .header-f {
    font-size: 15px;
    margin: 0;
    padding-bottom: 10px;
    font-family: "AGG";
  }
  
  .logo2 {
    font-size: 28px; 
    font-family: "AON";
    font-weight: 200;    
    text-decoration: none;
    font-weight: bold;
  }
  
  .footer-links {
    display: flex;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: flex-end;

  }

  .footer-links a {
    text-decoration: none;
    font-family: "AGG";
    font-size: 22px;

  }

  .footer-content .logo-f {
    transition: color 0.3s; 
}

.footer-content a:hover,
.footer-content .logo-f:hover {
    color: var(--main-color); 
}

@media(max-width: 780px) {
    footer {
        margin-top: 150px;
        margin-bottom: 40px;
    }
    .header-f {
        font-size: 10px; 
        padding-bottom: 10px;
        font-family: "AGG";
    }
    
    .logo2 {
        font-size: 20px;
        font-family: "AON";
        font-weight: 200;
    }
    .footer-links {
        gap: 20px;
    }
    
    .footer-links a {
        font-family: "AGG";
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    footer {
        display: flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        margin-top: 120px;
    }
    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    .header-f {
        text-align: center;
    }


    .footer-links {
        display: flex;
        gap: 15px; 
        justify-content: center;
        align-items: center;
    }

    .footer-links li {
        margin-left: 0px; 
        list-style: none;
        margin-top: 10px;
    }
    .footer-links a {
        font-family: "AGG";
        font-size: 15px;
    }
    

}