
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px
}

/* Variables */
:root {

    /* color */
    --navy: #1e2d3d;
    --navy-dark: #151d29;
    --teal: #6fd8cb;
    --teal-light: #8fe5dc;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --text-light: rgba(255, 255, 255, 0.85);

    /* spacing */
    --outerMrgn: 4em;
    --sectionMrgn: 6em;
}

/* General themes */


body {
    font-family: 'DM Sans', sans-serif;
    color: var(--navy);
    overflow-x: hidden;
}

/* Button */
.default-btn {
    background: var(--teal);
    color: var(--navy);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(111, 216, 203, 0.4);
    font-size: 1.05rem;
}

.default-btn:hover {
    background: var(--teal-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(111, 216, 203, 0.5);
}

/* Image ---------------------------------------------------------- */
img {
    width: 100%;
}

/* Logo ---------------------------------------------------------- */
.logo-title {
    color: var(--Gray-Black, #000);
    font-family: 'Newsreader', serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    transform: translateY(2px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 24px;
    font-weight: 600;
    color: var(--navy);
}

.logo-circle {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;

    background-color: var(--white);
    border: 4px solid var(--navy);;
}

.logo-circle path, .logo-circle svg{
    transform: translateY(-1.5px);
    width: 40px;
    fill: var(--navy);
}

/* Wave Divider ---------------------------------------------------------- */
.wave-divider {
    position: relative;
    height: 100px;
    background: var(--teal);
}

.wave-divider svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
}

/* Social Icons ---------------------------------------------------------- */
.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    background: var(--navy);
    color: var(--turquoise);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
