/* Resetting margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Importing font */
@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@400;700&display=swap');


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

.syncopate-active {
    font-family: "Syncopate", sans-serif;
    font-weight: 550;
    font-style: italic;
}

.syncopate-bold {
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: white;
}

.profile-icon {
    color: #fff;
}


.section-divider {
    height: 1px;
    background: #ddd;
    margin: 2rem 0;
    width: 100%;
}

.post-card-postplace-name {
    font-family: "Syncopate";
    font-weight: 700;
    padding: 10px;
    color: #fff;
    background-color: #2b2b2bd2;
    height: 10px;
    margin-bottom: 0rem;
}

.post-card-place-description {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #3a3a3a;
    padding: 10px;
    background-color: #e6e6e6;
    height: 80px;
    font-size: 13px;
}

.category-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 20px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: #666;
}

.filter-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.post-body {
    box-shadow: 0px 1px 7px 1px #00000093;
}


.bookmark-btn {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.bookmark-btn i {
    color: black;
}

.reaction-btn {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.reaction-btn i {
    color: rgb(0, 0, 0);
}

.ratings {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
}






body {
    background: url("/AWD-Xplora-Fuecoco-TEST/pages/Spots/assets/img/spots_bg.jpg") center center / cover;
    background-size: cover;
    min-height: 100vh;
    overflow-x: hidden;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    
}


body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: -1;
}

header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 100;
}

.post-options-menu {
    display: none; /* Hide the options menu by default */
    position: absolute;
    top: 30px;
    right: 10px;
    background-color: white;
    border: 1px solid #ddd;
    padding: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.delete-btn {
    background-color: #ff4d4d;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

.delete-btn:hover {
    background-color: #ff1a1a;
}

/* Show the options menu when the "more-options" button is clicked */
.post-header.active .post-options-menu {
    display: block;
}


.feed {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feed h2 {
    margin-bottom: 20px;
}

/* Post Cards */
.post-card {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    order: 2;
}

#categoryFilter {
    margin-bottom: 10px;
}

#post-section {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
form {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers all elements */
    gap: 3px; /* Adds spacing between inputs */
}

input, textarea {
    width: 100%; /* Makes input fields full width */
    max-width: 500px; /* Adjust based on preference */
    padding: 10px;
    border-radius: 15px;
    border: none;
    font-size: 16px;
}

textarea {
    height: 100px; /* Adjust height for better spacing */
    resize: none;
}
#postCreatorName,  #name, #location{
    height: 45px;
    padding: 10px;
    border-radius: 45px;
    color: rgb(150, 150, 150);
    margin-bottom: 10px;
}
#category {
    height: 45px;
    padding: 4px;
    width: 400px;
    border-radius: 45px;
    color: rgb(150, 150, 150);
    margin-bottom: 10px;
}

#description {
    height: 100px;
    padding: 10px;
    border-radius: 15px;
    color: rgb(150, 150, 150);
    margin-bottom: 10px;
}
#postContent {
    width: 80%;
    height: 130px;
    padding: 10px;
    border-radius: 20px;
    color: black;
}

button {
    padding: 10px;
    margin: 10px;
    cursor: pointer;
    background-color: aqua;
    
}

.post-card {
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 9px;
    margin: 20px auto;
    width: 80%;
    border-radius: 20px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    color: black;
}


.post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    height: 70px;
    position: relative;
}

.fas.fa-user-circle {
    font-size: 40px;
    margin-left: 10px;
}

.fas.fa-ellipsis-h.more-options{
    font-size: 30px;
    margin-right: 10px;
    margin-left: 10px;
}

.user-info {
    display: flex;
    align-items: center;
    font-weight: bold;
}

.user-info i {
    font-size: 20px;
    margin-right: 8px;
}

.post-meta {
    display: flex;
    gap: 5px;
}

.post-card-location,
.post-card-category {
    background: #d1d1d1;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 12px;
}
#postImage {
    border-radius: 30px;
}

.reactions {
    display: flex;
    gap: 10px;
}

.reactions button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

#topPosts {
    margin-bottom: 60px;
    padding-bottom: 30px;
    position: relative;
    z-index: 2;
}

#post-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}

#postButton {
    background-color: #ccc;
    color: #000;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 30px;
}

#postButton:hover {
    background: #0056b3;
}

.menu-toggle {
    font-size: 24px;
    cursor: pointer;
    color: white;
}


/* Updated Logo Styling */
.logo {
    position: absolute;
    padding-top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}


.logo img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}


.nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}


.right-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-left: 2%;
}


.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding-left: 1rem;
}


.active-page {
    position: relative;
    display: inline-block;
    color: aliceblue;
}


.active-page::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: aliceblue;
    bottom: -3px;
    left: 0;
}


.nav-links li {
    margin: 0 10px;
}


.nav-links li a {
    text-decoration: none;
    color: white;
}


.auth-links {
    display: flex;
    gap: 15px;
    flex: 2;
    justify-content: flex-end;
}


.auth-links button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 3px 15px;
    color: white;
    cursor: pointer;
    border-radius: 50px;
}

/* Hero Section */

.hero {
    text-align: center;
    padding: 5rem;
    font-family: 'Syncopate';
    color: white;
}

.hero p {
    padding-bottom: 30px;
}

.xplora_logo {
    height: 200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.fuecoco_logo {
    height: 200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.link-box {
    font-family: "syncopate";
    width: 280px;
    height: 70px;
    padding: 20px 20px 20px 10px;
    background-color: rgb(92, 92, 92);
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 1px;
    text-align: left;
    position: relative;
    margin-right: 20px;
    z-index: 2;
    cursor: pointer;
  

    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}


/* Remove margin from last button */
.link-box:last-child {
    margin-right: 0;
}


/* Hover effect */
.link-box:hover {
    background-color: #fff;
    color: rgb(92, 92, 92);
}


/* Focus effect (optional for accessibility) */
.link-box:focus {
    outline: none;
    background-color: #ccc;
    color: rgb(92, 92, 92);
}

.container {
    max-width: 1000px;
    margin: auto;
}

.team {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}
.member {
    background: rgba(255, 255, 255, 0.1);;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 200px;
}
.member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}
.member h3 {
    font-size: 1.2rem;
    font-weight: 600;
}
.member p {
    font-size: 1rem;
    color: white;
}

aside {
    padding: 2rem;
    font-family: 'Syncopate';
    color: white;
}

aside h2 {
    display: flex;
    justify-content: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    background-size: cover;
    background-position: center;
}

.social-icons .facebook { background-image: url('/pages/About Us/assets/img/V2.png'); } 
.social-icons .instagram { background-image: url('/pages/About Us/assets/img/V3.webp'); }
.social-icons .other { background-image: url('/pages/About Us/assets/img/V4.webp'); }

.learn-more {
    text-decoration: none;
    color: black;
    font-weight: 510;
    padding: 10px;
    width: 210px;
    background-color: whitesmoke;
    border-radius: 5px;
}

.contact-section {
    background-color: #11111100;
    color: #fff;
    padding: 20px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
    width: 100%;  
  }
 
  .contact-section h2 {
    font-family: "syncopate";
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 2px;
  }
 
  .contact-box {
    font-family: "syncopate";
    background-color: #2b2b2b;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 20px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 5px 5px 0px #ccc;
  }
 
  .contact-item {
    display: flex;
    align-items: center;
    margin: 15px 0;
  }
 
  .contact-icon {
    font-size: 24px;
    margin-right: 15px;
  }
 
  .contact-item p {
    font-size: 16px;
    color: #fff;
    margin: 0;
    letter-spacing: 1px;
  }
 
  /* Optional Responsive */
  @media (max-width: 600px) {
    .contact-box {
      padding: 20px;
    }
 
    .contact-item p {
      font-size: 14px;
    }
  }
 


 




/* Footer Section */
.footer {
    position: relative;
    z-index: 1;
    margin-top: 60px;
    padding-top: 30px;
    background-color: #59595900;
    color: #fff;
    padding: 30px 50px;
    font-family: Arial, sans-serif;
    font-family: "syncopate";
    text-align: center;
    width: 100%;
    bottom: 0;
}

.footer-container {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 20px 0;
    gap: 30px;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-subscribe {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-logo h2 {
    font-size: 30px;
    font-weight: bold;
}

.footer-logo p {
    font-size: 14px;
    margin-top: 8px;
    color: #ccc;
}

.footer-column h3 {
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #fff;
}

.footer-subscribe p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #ccc;
}

.subscribe-btn {
    background-color: #ccc;
    color: #000;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.subscribe-btn:hover {
    background-color: #fff;
}

/* Media Queries for Responsiveness */

/* iPhone 6 - 375x667 */
@media screen and (max-width: 375px) {
    body {
        font-size: 14px;
    }
    header {
        flex-direction: column;
        padding: 10px;
    }
    .logo {
        font-size: 22px;
    }
    nav {
        width: 100%;
    }
    .auth-links {
        width: 100%;
        justify-content: center;
    }
    .hero {
        height: auto;
        padding: 50px 20px;
    }
    .hero-content {
        width: 90%;
    }
    .explore-btn {
        font-size: 14px;
        padding: 10px 20px;
    }
    footer {
        font-size: 10px;
        padding: 8px;
    }
    main {
        min-height: calc(100vh - 300px);
        padding-bottom: 400px;
    }
    .footer {
        padding: 0px 20px;
    }
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .footer-logo,
    .footer-column,
    .footer-subscribe {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }
    .footer-column ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .section-divider {
        margin: 40px 0;
    }
    #topPosts {
        margin-bottom: 30px;
        padding-bottom: 15px;
    }
    .category-filter {
        padding: 5px;
        margin: 10px auto;
    }
    .category-filter button {
        padding: 6px 12px;
        font-size: 12px;
    }
}



/* iPad - 1024x768 */
@media screen and (max-width: 1024px) {
    body {
        font-size: 16px;
    }
    header {
        flex-direction: column;
        padding: 15px;
    }
    .logo {
        font-size: 26px;
    }
    nav {
        width: 100%;
    }

    .hero {
        height: 100vh;  /* Ensures full screen height */
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-content {
        width: 80%;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .explore-btn {
        font-size: 18px;
        padding: 15px 30px;
        margin-top: 20px;
    }

    footer {
        font-size: 12px;
        padding: 10px;
    }
}


/* Laptop - 1440x900 */
@media screen and (max-width: 1440px) {
    body {
        font-size: 18px;
    }
    header {
        padding: 20px;
    }
    .logo {
        font-size: 30px;
    }
    nav {
        width: 100%;
    }
    .hero {
        padding: 100px 60px;
    }
    .hero-content {
        max-width: 70%;
    }
    .explore-btn {
        font-size: 18px;
        padding: 15px 30px;
    }
    footer {
        font-size: 14px;
        padding: 12px;
    }
}

/* Desktop - 1920x1080 */
@media screen and (min-width: 1920px) {
    body {
        font-size: 20px;
    }
    header {
        padding: 25px;
    }
    .logo {
        font-size: 36px;
    }
    nav {
        width: 100%;
    }
    .hero {
        padding: 120px 80px;
    }
    .hero-content {
        max-width: 60%;
    }
    .explore-btn {
        font-size: 20px;
        padding: 18px 35px;
    }
    footer {
        font-size: 16px;
        padding: 14px;
    }
}

/* Main Content */
main {
    min-height: calc(100vh - 200px);
    padding-bottom: 300px;
    position: relative;
    width: 100%;
}

/* Top Posts Section */
#topPosts {
    margin-bottom: 40px;
}

/* Category Filter */
.category-filter {
    margin-bottom: 40px;
}

@media screen and (min-width: 376px) and (max-width: 1024px) {
    main {
        min-height: calc(100vh - 250px);
        padding-bottom: 350px;
    }
    #topPosts {
        margin-bottom: 35px;
    }
    .category-filter {
        margin-bottom: 35px;
    }
}

@media screen and (min-width: 376px) and (max-width: 1024px) {
    .footer-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }

    .footer-logo,
    .footer-column,
    .footer-subscribe {
        flex: 1 1 300px;
        max-width: 300px;
    }
}
