html { 
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Quicksand', sans-serif;
    background-color: #f7f5f0;
    color: #000;
    scroll-behavior: smooth;
    cursor: none;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 32px;
    height: 32px;
    background: url('paw_cursor.png') center/contain no-repeat;
    filter: invert(18%) sepia(100%) saturate(800%) hue-rotate(353deg) brightness(150%) contrast(150%);
    pointer-events: none;
    transform: rotate(-15deg);
    transition: transform 0.1s linear;
    z-index: 10000;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 500;
    color: #000;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff5733;
}

header {
  position: fixed;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  height: 60px;
}

/* Header container */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  height: 60px;
}


/* Hamburger icon */
.hamburger {
  font-size: 28px;
  cursor: pointer;
  display: none;
}

/* Logo style */
.logo {
  font-family: 'Limelight', sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  color: #ff5733;
}

/* Nav links */
nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-weight: bold;
  color: #000;
}

/* Responsive Mobile View */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  nav {
    position: static !important;
    transform: none !important;
  }

  .nav-links {
    display: none;
  }

  .nav-links.mobile {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 10px;
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav-links.show {
    display: flex !important;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Landing Section */

#landing::before {
    display: none;
}

#landing {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    background-image: url('cat_bg.png');
    background-size: auto;
    background-repeat: repeat;
    background-position: -8px -5px;
    background-color: #f7f5f0;
    padding: 0 5vw; 
}
@media (max-width: 600px) {
  #landing {
    height: auto;
    padding: 120px 5vw 60px; 
    padding-top: 120px !important;

  }
}

/* Main Title */
h1 {
    font-family: 'Limelight', sans-serif;
    font-size: 7rem;
    margin: 0;
    color: #ff5733;
}

h1 span {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 900;
    color: #000;
}

/* Subtitle */
.subtext {
    font-size: 2rem;
    font-weight: bold;
    color: #ff5733;
    display: block;
    text-align: center;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    h1 {
        font-size: 6rem;
    }
    .subtext {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 5rem;
    }
    .subtext {
        font-size: 1.6rem;
    }
    nav ul {
        gap: 10px;
    }
    nav ul li a {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 4rem;
    }
    .subtext {
        font-size: 1.4rem;
    }
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    nav ul li a {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 3rem;
    }
    .subtext {
        font-size: 1.2rem;
    }
    nav ul {
        flex-direction: column;
        text-align: center;
    }
    nav ul li a {
        font-size: 0.8rem;
    }
}

/* Sections */
section {
    padding: 10px 15px 50px; 
    text-align: center;
    font-family: 'Lexend Deca', sans-serif;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
}
section h1,
section h2 {
    margin-top: 0;
    padding-top: 0;
}
section p {
    margin: 10px 0 5px !important;
    padding: 0 !important;
}

.about-section {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: #f7f5f0;
    padding: 30px 15px; 
}

.about-container {
    display: flex;
    flex-direction: row; 
    align-items: center;
    max-width: 800px;
    text-align: left; 
    gap: 40px; 
}

.about-image {
    position: relative;
    border-radius: 20px;
    background-color: #ff5733;
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 220px;
    height: 290px;
    border-radius: 15px;
    object-fit: cover;
}

.about-content {
    font-size: 16px; 
    line-height: 1.5; 
    flex: 1; 
}
.about-content h2 {
    font-size: 2.5rem; 
}

.resume-button-container {
    margin-top: 20px;
    display: flex;
    justify-content: center; 
}

.resume-button {
    border: 2px solid #ff5733;
    color: #ff5733;
    background: transparent;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px; 
    transition: 0.3s ease;
}

.resume-button:hover {
    background-color: #ff5733;
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .about-image img {
    width: 180px;
    height: auto;
  }
}

/* Experience Section */
#experience {
    padding: 30px 50px; 
    background-color: #f7f5f0;
    text-align: left;
}


.section-title {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 3rem;
    font-weight: bold;
    color: #000;
}

.experience-container {
    max-width: 900px;
    margin: 0 auto;
}

.experience-grid {
    display: flex;
    flex-wrap: wrap; 
    gap: 40px; 
}

.experience-item {
    flex: 1;
    min-width: 45%; 
    font-family: 'Lexend Deca', sans-serif;
}


.experience-item h3 {
    font-size: 1.2rem;
    font-weight: bold;
}

.experience-item p {
    font-size: 1rem;
    color: #333;
    margin: 5px 0;
}

.hover-pop:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
}

/* Poster Section */
#posters {
    padding: 30px 0;
    background-color: #f7f5f0;
    text-align: center;
}

#posters .poster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 15px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch; 
}

#posters .poster-item {
    display: flex; 
    flex-direction: column;
    height: 350px; 
    width: 100%; 
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#posters .poster-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 12px;
}

#posters a {
    color: #ff5733;
    font-weight: bold;
    text-decoration: none;
}

#posters a:hover {
    color: #d4411e;
    text-decoration: underline;
}

/* 3x3 Grid Layout */
.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; 
    max-width: 90vw;
    margin: auto;
}

.image-item {
    height: 350px; 
    width: 100%;   
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.image-item img {
    width: 100%;
    height: 100%;  
    object-fit: cover; 
    transition: transform 0.3s ease-in-out;
}

/* Illustration Section */
#illustration-showcase {
    padding: 30px 4%; 
    background-color: #f7f5f0;
    text-align: center;
}


#illustrations a {
    color: #ff5733;
    font-weight: bold;
    text-decoration: none;
}

#illustrations a:hover {
    color: #d4411e;
    text-decoration: underline;
}
.illustration-container {
    position: relative;
}

/* Bento Grid Layout */
.illustration-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 15px;
    max-width: 90%;
    margin: auto;
    position: relative;
}

/* Assign unique sizes to create a Bento effect */
.illustration-showcase-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px; 
    transition: transform 0.3s ease-in-out, border-radius 0.3s ease-in-out;
}

/* Define unique placements and sizes */
.illustration-showcase-grid img:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.illustration-showcase-grid img:nth-child(2),
.illustration-showcase-grid img:nth-child(3) {
    grid-column: span 1;
    grid-row: span 1;
}

.illustration-showcase-grid img:nth-child(4) {
    grid-column: span 2;
    grid-row: span 1;
}

.illustration-showcase-grid img:nth-child(5) 
.illustration-showcase-grid img:nth-child(6),
.illustration-showcase-grid img:nth-child(7),
.illustration-showcase-grid img:nth-child(8) {
    grid-column: span 1;
    grid-row: span 1;
}

/* Responsive Design */
@media (max-width: 900px) {
    .illustration-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .illustration-showcase-grid img {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
}

/* Section Styling */
#landscape-illustrations { 
    padding: 20px 0;
    background-color: #f7f5f0;
    text-align: center;
}

/* Grid Layout */
.landscape-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 8px;
    padding: 15px;
    max-width: 80vw;
    max-height: 80vh;
    margin: auto;
}

/* Grid Items */
.landscape-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer; 
}

/* Image Styling */
.landscape-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: border-radius 0.3s ease-in-out;
}

/* Adjust Grid Positions & Sizes */
.image1 { grid-column: span 2; grid-row: span 2; height: 50vh; } 
.image2 { grid-column: 3; grid-row: 1; height: 19vh; } 
.image3 { grid-column: 3; grid-row: 2; height: 29vh; } 
.image4 { grid-column: 1; grid-row: 3; height: 35vh; } 
.image5 { grid-column: 2 / span 2; grid-row: 3; height: 35vh; } 

/* Fullscreen Modal */
.fullscreen-modal {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Fullscreen Image */
.fullscreen-modal img {
    max-width: 70%;
    max-height: 90%;
    border-radius: 10px;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
}

/* Previous and Next Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: white;
    background: rgba(0, 0, 0, 0.5); 
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
}

.prev-btn {
    left: 20px; 
}

.next-btn {
    right: 20px; 
}


#branding-gallery {
    background-color: #f7f5f0;
    background-size: 150px 150px;
    background-position: center;
    background-attachment: fixed; 
    padding: 30px 4%; 
    text-align: center;
    position: relative; 
}

/* Common Gallery Wrapper */
.gallery-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Common Text Content */
.text-content {
    flex: 1;
    max-width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: flex-start; 
    position: relative;
    top: -10px; 
}

.text-content h2 {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 3rem;
    color: #ec411b;
    font-weight: bold;
    margin: 0;
    margin-top: -10px !important;
    padding-top: 10px; 
}

/* ===== PACKAGE DESIGN SECTION ===== */
#package-design {
    padding: 30px 4%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f7f5f0;
}

#package-design .gallery-wrapper {
    max-width: 1100px;
    width: 100%;
}

/* Grid for Branding Package Designs */
.image-grid-six {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Force 3 columns */
    grid-template-rows: repeat(2, auto);  /* Force 2 rows */
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
}

.image-grid-six img {
    width: 100%;
    height: 280px;               
    border-radius: 12px;
    object-fit: cover;    
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.image-grid-six img:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 900px) {
    .image-grid-six {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on smaller screens */
        grid-template-rows: auto;
    }
}

/*thankyou */
.thank-you {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 3rem;
    font-weight: bold; 
    color: #000; 
    text-align: center;
}

.bye {
    font-family: 'Limelight', sans-serif; 
    font-size: 6rem; 
    font-weight: normal; 
    color: #ff5733; 
    display: inline-block;
    transform-origin: center;
}

.cat-elements {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.cat-elements img {
    width: 80px;
    height: auto;
    animation: float 2s infinite alternate ease-in-out;
}

/* Contact Icons Section */
.contact-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    align-items: center; 
}

.contact-icons .icon-link img {
    width: 50px; 
    height: 50px;
    object-fit: contain; /* Prevents distortion */
    transition: transform 0.3s ease;
}

.contact-icons .icon-link:hover img {
    transform: scale(1.2);
}

/* Adjust LinkedIn icon padding to align properly */
.icon-link img[alt="Linkedin"] {
    padding: 5px; 
    background-color: #006ab5; /* needed to blend the edges */
    border-radius: 50%; 
}

@media (max-width: 480px) {
  .contact-icons {
    flex-wrap: wrap;
    gap: 10px;
  }

  .cat-elements {
    flex-wrap: wrap;
    gap: 10px;
  }

  .contact-icons .icon-link img {
    width: 40px;
    height: 40px;
  }

  .cat-elements img {
    width: 60px;
  }
}

@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-10px); }
}

/* Section Divider */
.section-divider {
    width: 80%;
    margin: 60px auto;
    border-top: 1px solid #ff5733;
    position: relative;
    opacity: 0;
    animation: fadeInDivider 1s ease forwards;
}

/* Center Symbol */
.section-divider .divider-symbol {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #f7f5f0; /* match your background color */
    padding: 0 12px;
    font-size: 1.2rem;
    color: #ff5733;
    font-weight: bold;
    font-family: 'Lexend Deca', sans-serif;
}

/* Fade-in Animation */
@keyframes fadeInDivider {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

img:not(.cat-icon):not(.custom-cursor):not(.icon-link img):hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
